A061481 a(n) = floor(e^(n/e)).
1, 1, 2, 3, 4, 6, 9, 13, 18, 27, 39, 57, 82, 119, 172, 249, 359, 520, 751, 1085, 1568, 2265, 3272, 4727, 6830, 9867, 14255, 20593, 29751, 42980, 62092, 89703, 129591, 187216, 270465, 390733, 564479, 815485, 1178106, 1701972, 2458784, 3552126, 5131643
Offset: 0
Keywords
Links
- Harry J. Smith, Table of n, a(n) for n = 0..500
- E. F. Krause, Maximizing The Product of Summands, Mathematics Magazine, MAA Oct 1996, Vol. 69, no. 5 pp. 270-271.
- D. J. Newman, A Problem Seminar, Problem 15 pp. 5; 15 Springer-Verlag NY 1982.
Programs
-
Mathematica
Table[ Floor[E^(n/E)], {n, 0, 35}] (* Robert G. Wilson v, Oct 23 2004 *)
-
PARI
{ default(realprecision, 100); e=exp(1); for (n=0, 500, write("b061481.txt", n, " ", floor(e^(n/e))) ) } \\ Harry J. Smith, Jul 23 2009
Comments