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

A181885
Integer nearest (1/n)*(r^n), where r = golden ratio = (1 + sqrt(5))/2.
3
2, 1, 1, 2, 2, 3, 4, 6, 8, 12, 18, 27, 40, 60, 91, 138, 210, 321, 492, 756, 1166, 1800, 2786, 4320, 6710, 10440, 16267, 25380, 39650, 62017, 97108, 152214, 238824, 375060, 589521, 927369, 1459960, 2300100
OFFSET
1,1
LINKS
FORMULA
a(n) = floor(1/2 + (1/n)*(r^n)), where r = golden ratio = (1 + sqrt(5))/2.
MATHEMATICA
Table[Round[((1 + Sqrt[5])/2)^n/n], {n, 1, 50}]
PROG
(Magma) [Round(((1 + Sqrt(5))/2)^n/n): n in [1..50]]; // Vincenzo Librandi, Jun 21 2011
CROSSREFS
Sequence in context: A306945 A234716 A357383 * A116560 A309224 A103784
KEYWORD
nonn
AUTHOR
Clark Kimberling, Nov 20 2010
STATUS
approved