login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
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
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 6 18:59 EDT 2024. Contains 372297 sequences. (Running on oeis4.)