A265905 a(1) = 1; for n > 1, a(n) = a(n-1) + A153880(a(n-1)).
1, 3, 11, 49, 291, 1979, 15217, 136659, 1349627, 14561425, 174637707, 2254758155, 31206959833, 467925825795, 7453435202483, 125743951819681, 2262941842058883, 42863071603162571, 852618666050008129, 17902734514975521891, 392964858422866610699, 9001537965557375522737, 216015564123360144707139, 5390978540058458090266187
Offset: 1
Links
Crossrefs
Programs
-
Mathematica
f[n_] := Module[{k = n, m = 2, r, s = {0}}, While[{k, r} = QuotientRemainder[k, m]; k != 0 || r != 0, AppendTo[s, r]; m++]; FromDigits[Reverse[s], MixedRadix[Reverse@ Range[2, Length[s] + 1]]]]; NestList[f[#] + # &, 1, 23] (* Amiram Eldar, Feb 14 2024 *)
Formula
Extensions
Comment and the note about binomial transform corrected - Antti Karttunen, Sep 20 2016
Comments