A218983 Power ceiling sequence of sqrt(5).
3, 7, 16, 36, 81, 182, 407, 911, 2038, 4558, 10192, 22791, 50963, 113957, 254816, 569786, 1274081, 2848932, 6370406, 14244661, 31852031, 71223307, 159260157, 356116538, 796300787, 1780582691, 3981503937, 8902913456
Offset: 0
Examples
a(0) = ceiling(r) = 3, where r = sqrt(5); a(1) = ceiling(3*r) = 7; a(2) = ceiling(7*r ) = 16.
Links
- Clark Kimberling, Table of n, a(n) for n = 0..250
Programs
-
Mathematica
(See A214999.) With[{c=Sqrt[5]},NestList[Ceiling[c #]&,Ceiling[c],30]] (* Harvey P. Dale, Mar 06 2013 *)
Formula
a(n) = ceiling(x*a(n-1)), where x=sqrt(5), a(0) = ceiling(x).
Comments