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

A239462
A239459(n) / n.
6
11, 41, 91, 161, 251, 361, 491, 641, 811, 10001, 12101, 14401, 16901, 19601, 22501, 25601, 28901, 32401, 36101, 40001, 44101, 48401, 52901, 57601, 62501, 67601, 72901, 78401, 84101, 90001, 96101, 102401, 108901, 115601, 122501, 129601, 136901, 144401, 152101
OFFSET
1,1
LINKS
EXAMPLE
a(13) = 16901 because A239459(13)/13 = 219713/13 = 16901.
MATHEMATICA
Table[ToExpression[ToString[n^3]<>ToString[n]]/n, {n, 1, 30}] (* Vaclav Kotesovec, Mar 24 2014 *)
PROG
(PARI) vector(100, n, eval(Str(n^3, n))/n)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Colin Barker, Mar 19 2014
STATUS
approved