|
| |
|
|
A004647
|
|
Powers of 2 written in base 8.
|
|
0
|
|
|
|
1, 2, 4, 10, 20, 40, 100, 200, 400, 1000, 2000, 4000, 10000, 20000, 40000, 100000, 200000, 400000, 1000000, 2000000, 4000000, 10000000, 20000000, 40000000, 100000000, 200000000, 400000000, 1000000000
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
0,2
|
|
|
COMMENTS
|
Or, numbers of form 10^n, 2*10^n, 4*10^n.
Or, numbers n such that the digits of n^3 are decreasing. - Dmitry Kamenetsky, Jun 15 2006
|
|
|
LINKS
|
Table of n, a(n) for n=0..27.
|
|
|
FORMULA
|
a(0)=1, a(1)=2, a(2)=4, a(n)=10*a(n-3). - Harvey P. Dale, Aug 16 2012
|
|
|
MATHEMATICA
|
Table[FromDigits[IntegerDigits[2^n, 8]], {n, 0, 30}] (* or *) LinearRecurrence[ {0, 0, 10}, {1, 2, 4}, 30] (* Harvey P. Dale, Aug 16 2012 *)
|
|
|
CROSSREFS
|
Sequence in context: A174175 A127392 A189585 * A167030 A026644 A167193
Adjacent sequences: A004644 A004645 A004646 * A004648 A004649 A004650
|
|
|
KEYWORD
|
nonn,base
|
|
|
AUTHOR
|
N. J. A. Sloane.
|
|
|
STATUS
|
approved
|
| |
|
|