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

A045539
Multiply by 5 and reverse.
8
1, 5, 52, 62, 13, 56, 82, 14, 7, 53, 562, 182, 19, 59, 592, 692, 643, 5123, 51652, 62852, 62413, 560213, 5601082, 1450082, 140527, 536207, 5301862, 1390562, 182596, 89219, 590644, 223592, 697111, 5555843, 51297772, 68884652, 62324443, 512226113, 5650311652
OFFSET
0,2
MAPLE
a:= proc(n) option remember; `if`(n=0, 1,
(s-> parse(cat(s[-i]$i=1..length(s))))(""||(5*a(n-1))))
end:
seq(a(n), n=0..40); # Alois P. Heinz, Apr 09 2015
MATHEMATICA
a[n_] := a[n] = If[n==0, 1, IntegerReverse[5a[n-1]]];
a /@ Range[0, 40] (* Jean-François Alcover, Jan 01 2021 *)
CROSSREFS
Cf. A036447 (*2), A163632 (*3), A132064 (*4), A132078 (*6), A132114 (*7), A132113 (*8), A133361 (*9).
Sequence in context: A247702 A247713 A067282 * A281202 A173719 A081075
KEYWORD
base,nonn
STATUS
approved