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

A072021
Smallest solution to gcd(x, reverse(x)) = 5^n.
5
5, 5200, 521000, 5213750, 521875, 5218750, 52130234375, 5734841796875, 57869714843750, 526046650390625, 5265674365234375, 52187008544921875, 526515306396484375, 5213023309008789062500, 5213596736358642578125, 5260466086273193359375, 526041911745452880859375
OFFSET
1,1
LINKS
Hiroaki Yamanouchi, Table of n, a(n) for n = 1..25
FORMULA
a(n) = A069554(5^n).
EXAMPLE
For n = 4, gcd(521875, 578125) = 3125 = 5^4.
For n = 8, a(8) = 5734841796875 = 5^9*2936239, reverse(a(8)) = 5786971484375 = 5^8*71*208657.
PROG
(PARI) a(n) = {my(k = 1); while (gcd(k, fromdigits(Vecrev(digits(k)))) != 5^n, k++); k; } \\ Michel Marcus, Jul 13 2018
KEYWORD
nonn,base
AUTHOR
Labos Elemer, Jun 06 2002
EXTENSIONS
a(9)-a(18) from Hiroaki Yamanouchi, Sep 10 2014
STATUS
approved