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

A102254
Begin with 3, multiply each digit by 2, keeping the memory of the groupings of the preceding digits.
1
3, 6, 12, 24, 48, 816, 16212, 212424, 424848, 84816816, 1681621216212, 21216212424212424, 424212424848424848, 8484248481681684816816, 1681684816816212162121681621216212, 21216212168162121621242421242421216212424212424
OFFSET
1,1
FORMULA
d*2, beginning with 3.
EXAMPLE
Read a(3)=12 which produces a(4)=24 because 1*2=2 and 2*2=4.
MATHEMATICA
Flatten[ NestList[ Function[x, FromDigits[ Flatten[ IntegerDigits[2IntegerDigits[ x]]] ]], 3, 15]] (* Robert G. Wilson v, Feb 21 2005 *)
CROSSREFS
Sequence in context: A099844 A165929 A084717 * A278666 A007239 A088970
KEYWORD
base,easy,nonn
AUTHOR
EXTENSIONS
More terms from Robert G. Wilson v, Feb 21 2005
STATUS
approved