|
| |
|
|
A067037
|
|
n^m where m = floor[Sum(1/k), k = 1 to n].
|
|
1
| |
|
|
1, 2, 3, 16, 25, 36, 49, 64, 81, 100, 1331, 1728, 2197, 2744, 3375, 4096, 4913, 5832, 6859, 8000, 9261, 10648, 12167, 13824, 15625, 17576, 19683, 21952, 24389, 27000, 923521, 1048576, 1185921, 1336336, 1500625, 1679616, 1874161, 2085136
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
LINKS
| Harry J. Smith, Table of n, a(n) for n=1,...,500
|
|
|
EXAMPLE
| a(4) = 16 as floor [ 1 + 1/2 + 1/3 + 1/4 ]= floor[ 2.08333333333333...]=2; a(11) = 1331 as floor [ 1+ 1/2 +...1/10 + 1/11 ] = floor [ 3.01987734487...] = 3
|
|
|
PROG
| (PARI) { s=0; for (n=1, 500, s+=1/n; write("b067037.txt", n, " ", n^floor(s)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Apr 28 2010]
|
|
|
CROSSREFS
| Sequence in context: A044905 A045877 A100643 * A117926 A185251 A092503
Adjacent sequences: A067034 A067035 A067036 * A067038 A067039 A067040
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Dec 29 2001
|
|
|
EXTENSIONS
| More terms from Jason Earls (zevi_35711(AT)yahoo.com), Jan 09 2002
|
| |
|
|