login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A080869
a(n+1) = floor( (a(n) + 1)^(1 + 1/n) ), with a(1) = 1.
3
1, 4, 11, 27, 64, 149, 345, 797, 1839, 4242, 9782, 22554, 52001, 119892, 276417, 637290, 1469294, 3387506, 7810005, 18006217, 41513909, 95711641, 220666238, 508753041, 1172946341, 2704265147, 6234769423, 14374459471, 33140774109
OFFSET
1,2
LINKS
FORMULA
a(n) = floor(t^n) - 1, where t = 2.30553184793480801944987312451742393976098898...
EXAMPLE
Given a(4)=27, then a(5)=64 because 64=floor((27+1)^(5/4)).
MATHEMATICA
nxt[{n_, a_}]:={n+1, Floor[(a+1)^(1+1/n)]}; NestList[nxt, {1, 1}, 30][[All, 2]] (* Harvey P. Dale, Jul 15 2018 *)
CROSSREFS
Sequence in context: A047859 A100335 A340228 * A137229 A301874 A027439
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 21 2003
STATUS
approved