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

A077691
a(n) = A076803(n)/n.
1
1, 5, 70, 1358, 8642, 90535, 301574268, 12345679, 97393690, 987654321, 83470146831028373729, 260092516563786, 55088570240085399905, 511536723657935856261, 2754140734658436214
OFFSET
1,2
PROG
(PARI) {len10(m) = ceil(log(m+1)/log(10))} {reverse(n) = m=0; while(n, m=m*10+(n%10); n\=10); return(m)} {a(n) = local(m); for(s=0, 10^6, m=0; for(i=0, n-1, m=m*10^len10(s+i)+s+i); m=reverse(m); if(s==0, m*=10); if(m%n==0, return(m )); if(n%10==0, return(0)))} (Alekseyev)
CROSSREFS
Sequence in context: A142588 A246154 A151471 * A277301 A014231 A203528
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 16 2002
EXTENSIONS
More terms from Max Alekseyev, Feb 15 2005
STATUS
approved