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

A001128
Reverse digits of previous term and multiply by previous term.
1
2, 4, 16, 976, 662704, 269896807264, 124883600543123110859968, 108643488775144622666209173128243503963147630528
OFFSET
1,1
LINKS
FORMULA
a(n) = A061205(a(n-1)) for n>1, with a(1) = 2. - Michel Marcus, Mar 18 2017
MATHEMATICA
a[n_]:=If[n<2, 2, a[n - 1] * FromDigits[Reverse[IntegerDigits[a[n - 1]]]]]; Table[a[n], {n, 10}] (* Indranil Ghosh, Mar 18 2017 *)
PROG
(PARI) a(n) = if (n==1, 2, prev = a(n-1); prev*fromdigits(Vecrev(digits(prev)))); \\ Michel Marcus, Mar 18 2017
(Python) def a(n): return 2 if n<2 else a(n - 1) * int(str(a(n - 1))[::-1]) # Indranil Ghosh, Mar 18 2017
CROSSREFS
Cf. A061205.
Sequence in context: A152690 A194457 A371717 * A280890 A124436 A369378
KEYWORD
nonn,base
STATUS
approved