login
A379410
a(n) = n + floor(n*r/t) + floor(n*s/t), where r = u^(1/4), s = u^(1/2), t = u^(3/4), u = golden ratio (A001622).
3
1, 4, 7, 10, 12, 15, 18, 21, 23, 25, 28, 31, 34, 37, 39, 42, 45, 47, 49, 52, 55, 58, 61, 63, 66, 69, 71, 74, 76, 79, 82, 85, 87, 90, 93, 95, 98, 100, 103, 106, 109, 112, 114, 117, 119, 122, 124, 127, 130, 133, 136, 138, 140, 143, 146, 149, 151, 154, 157, 160, 162, 164, 167, 170
OFFSET
1,2
COMMENTS
This sequence, A379408, and A379409 partition the positive integers.
FORMULA
a(n) = n + floor(n/r^2) + floor(n/r), where r = u^(1/4), u = golden ratio.
MATHEMATICA
u = (1 + 5^(1/2))/2;
r = u^(1/4); s = u^(1/2); t = u^(3/4);
Table[n + Floor[n*s/r] + Floor[n*t/r], {n, 1, 120}] (* A379408 *)
Table[n + Floor[n*r/s] + Floor[n*t/s], {n, 1, 120}] (* A379409 *)
Table[n + Floor[n*r/t] + Floor[n*s/t], {n, 1, 120}] (* A379410 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 21 2025
EXTENSIONS
Values corrected by R. J. Mathar, Jan 28 2025
STATUS
approved