The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A350092 a(n) = floor(x^n) where x = 1 + sqrt(5)/2 = A176055. 2
1, 2, 4, 9, 20, 42, 90, 191, 405, 857, 1816, 3848, 8150, 17263, 36564, 77445, 164031, 347423, 735855, 1558567, 3301098, 6991839, 14808952, 31365865, 66433969, 140709405, 298027302, 631231956, 1336970739, 2831749467, 5997741619, 12703420605, 26906276616 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n+1)/a(n) tends to A176055 when n tends towards infinity.
LINKS
MAPLE
seq(floor((1+sqrt(5)/2)^n), n=0..32);
MATHEMATICA
a[n_] := Floor[(GoldenRatio + 1/2)^n]; Array[a, 33, 0] (* Amiram Eldar, Dec 14 2021 *)
PROG
(Python)
from sympy import floor, sqrt
def A350092(n): return floor((1+sqrt(5)/2)**n) # Chai Wah Wu, Dec 17 2021
CROSSREFS
Cf. A176055, A058066 (x*n), A014217 (phi^n).
Sequence in context: A101338 A018102 A018103 * A175104 A123720 A179744
KEYWORD
nonn,easy
AUTHOR
Michel Lagneau, Dec 14 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 2 00:37 EDT 2024. Contains 373032 sequences. (Running on oeis4.)