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!)
A283733 a(n) = a(n-1) + 1 + floor(n*golden ratio), with a(0) = 1. 2
1, 3, 7, 12, 19, 28, 38, 50, 63, 78, 95, 113, 133, 155, 178, 203, 229, 257, 287, 318, 351, 385, 421, 459, 498, 539, 582, 626, 672, 719, 768, 819, 871, 925, 981, 1038, 1097, 1157, 1219, 1283, 1348, 1415, 1483, 1553, 1625, 1698, 1773, 1850, 1928, 2008, 2089 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
This is column 1 of the rank array, A283734, of the golden ratio.
LINKS
MATHEMATICA
a[0] = 1; a[n_] := a[n] = a[n - 1] + 1 + Floor[n*GoldenRatio]; Table[a[n], {n, 0, 100}]
PROG
(PARI) g = (1 + sqrt(5))/2;
a(n) = if(n<1, 1, a(n - 1) + 1 + floor(n*g));
for(n=0, 100, print1(a(n), ", ")) \\ Indranil Ghosh, Mar 17 2017
CROSSREFS
Sequence in context: A303279 A024219 A371701 * A025713 A022791 A025742
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 16 2017
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 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)