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

A140232
a(n) = ceiling(n*exp((1+sqrt(5))/2)).
2
6, 11, 16, 21, 26, 31, 36, 41, 46, 51, 56, 61, 66, 71, 76, 81, 86, 91, 96, 101, 106, 111, 116, 122, 127, 132, 137, 142, 147, 152, 157, 162, 167, 172, 177, 182, 187, 192, 197, 202, 207, 212, 217, 222, 227, 232, 238, 243, 248, 253, 258, 263, 268, 273, 278, 283
OFFSET
1,1
LINKS
FORMULA
a(n) = ceiling(n*A139341). - R. J. Mathar, Feb 06 2009
MATHEMATICA
Ceiling[Exp[GoldenRatio]*Range[60]] (* G. C. Greubel, Jun 30 2019 *)
PROG
(PARI) phi=(1+sqrt(5))/2; vector(60, n, ceil(n*exp(phi)) ) \\ G. C. Greubel, Jun 30 2019
(Magma) phi:=(1+Sqrt(5))/2; [Ceiling(n*Exp(phi)): n in [1..60]]; // G. C. Greubel, Jun 30 2019
(Sage) [ceil(n*exp(golden_ratio)) for n in (1..60)] # G. C. Greubel, Jun 30 2019
KEYWORD
nonn
AUTHOR
Mohammad K. Azarian, May 13 2008
STATUS
approved