79493924

Date: 2025-03-08 05:22:52
Score: 2
Natty:
Report link

Here is a true recursive function/formula:

=LET(
    x, A1,
    f, LAMBDA(ME,n,[c], IF(n = 1, n, n + ME(ME, ROUNDUP(n / 6, 0), c + 1))),
    f(f, x) - x
)

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bam