|
| |
|
|
A038398
|
|
Concatenate first n cubes in reverse order.
|
|
1
| |
|
|
1, 81, 2781, 642781, 125642781, 216125642781, 343216125642781, 512343216125642781, 729512343216125642781, 1000729512343216125642781, 13311000729512343216125642781, 172813311000729512343216125642781
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,2
|
|
|
REFERENCES
| M. Bencze, L.Tutescu, Some Notions and Questions in Number Theory, Sequence 6.
|
|
|
LINKS
| M. L. Perez et al., eds., Smarandache Notions Journal
|
|
|
FORMULA
| a(n)=(n^3)*10^floor{1+log10[a(n-1)]}+a(n-1), with a(1)=1 - Paolo P. Lava (paoloplava(AT)gmail.com), Jun 20 2008
|
|
|
MAPLE
| P:=proc(i) local a, n; a:=1; print(1); for n from 2 by 1 to i do a:=n^3*10^floor(evalf(1+log10(a), 1000))+a; print(a); od; end: P(100); - Paolo P. Lava (paoloplava(AT)gmail.com), Jun 20 2008
|
|
|
CROSSREFS
| Sequence in context: A206534 A018223 A206660 * A205902 A143652 A017797
Adjacent sequences: A038395 A038396 A038397 * A038399 A038400 A038401
|
|
|
KEYWORD
| nonn,base,easy
|
|
|
AUTHOR
| M.I.Petrescu (mipetrescu(AT)yahoo.com)
|
|
|
EXTENSIONS
| More terms from Andrew Gacek (andrew(AT)dgi.net), Feb 21 2000
|
| |
|
|