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

A065524
The (5^n)-th composite number.
0
4, 10, 38, 164, 760, 3634, 17653, 86542, 426510, 2109602, 10458654, 51938515, 258246036, 1285227649, 6400837884, 31896080698, 159013169263, 793026358830, 3956152086139, 19740921224246, 98526658283206, 491833651069513, 2455555405866035, 12261373736046802
OFFSET
0,1
MATHEMATICA
Composite[n_Integer] := Block[ {k = n + PrimePi[n] + 1 }, While[ k != n + PrimePi[k] + 1, k = n + PrimePi[k] + 1]; Return[ k ]]; Table[ Composite[5^n], {n, 0, 18} ]
CROSSREFS
Sequence in context: A149199 A149200 A149201 * A024689 A320806 A149202
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Nov 27 2001
EXTENSIONS
a(19)-a(23) from Chai Wah Wu, Apr 21 2018
STATUS
approved