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”).

A004920
a(n) = floor(n*phi^5), where phi is the golden ratio, A001622.
19
0, 11, 22, 33, 44, 55, 66, 77, 88, 99, 110, 121, 133, 144, 155, 166, 177, 188, 199, 210, 221, 232, 243, 255, 266, 277, 288, 299, 310, 321, 332, 343, 354, 365, 377, 388, 399, 410, 421, 432, 443, 454, 465, 476, 487, 499, 510, 521, 532, 543, 554, 565, 576, 587, 598
OFFSET
0,2
MATHEMATICA
Table[Floor[n GoldenRatio^5], {n, 0, 54}] (* Stefano Spezia, Feb 19 2023 *)
PROG
(Magma) [Floor((11+5*Sqrt(5))*n/2): n in [0..60]]; // G. C. Greubel, Aug 22 2023
(SageMath) [floor(golden_ratio^5*n) for n in range(61)] # G. C. Greubel, Aug 22 2023
KEYWORD
nonn
STATUS
approved