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!)
A004922 a(n) = floor(n*phi^7), where phi is the golden ratio, A001622. 25
0, 29, 58, 87, 116, 145, 174, 203, 232, 261, 290, 319, 348, 377, 406, 435, 464, 493, 522, 551, 580, 609, 638, 667, 696, 725, 754, 783, 812, 841, 871, 900, 929, 958, 987, 1016, 1045, 1074, 1103, 1132, 1161, 1190, 1219, 1248, 1277, 1306, 1335, 1364 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MATHEMATICA
Table[Floor[n ((1 + Sqrt[5])/2)^7], {n, 0, 50}] (* Vincenzo Librandi, Jul 22 2015 *)
PROG
(Python)
from sympy import sqrt
phi = (1 + sqrt(5))/2
for n in range(0, 101): print(int(n*phi**7), end=', ') # Karl V. Keller, Jr., Jul 22 2015
(Magma) [Floor(n*((1 + Sqrt(5))/2)^7): n in [0..50]]; // Vincenzo Librandi, Jul 22 2015
CROSSREFS
Cf. A001622, A004962 (ceiling).
Sequence in context: A048846 A195819 A248786 * A249079 A004942 A033904
KEYWORD
nonn
AUTHOR
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)