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

A025625
Numbers of form 5^i*10^j, with i, j >= 0.
11
1, 5, 10, 25, 50, 100, 125, 250, 500, 625, 1000, 1250, 2500, 3125, 5000, 6250, 10000, 12500, 15625, 25000, 31250, 50000, 62500, 78125, 100000, 125000, 156250, 250000, 312500, 390625, 500000, 625000, 781250, 1000000, 1250000, 1562500, 1953125
OFFSET
1,2
LINKS
FORMULA
Sum_{n>=1} 1/a(n) = (5*10)/((5-1)*(10-1)) = 25/18. - Amiram Eldar, Sep 25 2020
a(n) ~ exp(sqrt(2*log(5)*log(10)*n)) / sqrt(50). - Vaclav Kotesovec, Sep 25 2020
MAPLE
N:= 10^8: # for all terms <= N
sort([seq(seq(5^i*10^j, j=0..floor(log[10](N/5^i))), i=0..floor(log[5](N)))]); # Robert Israel, Nov 19 2019
MATHEMATICA
Block[{a = 5, b = 10, n = 10^7}, Sort@ Flatten@ Table[a^p * b^q, {p, 0, Log[a, n]}, {q, 0, Log[b, n/(a^p)]}]] (* Michael De Vlieger, Nov 19 2019 *)
PROG
(PARI) list(lim)=my(v=List(), N); for(n=0, logint(lim\=1, 10), N=10^n; while(N<=lim, listput(v, N); N*=5)); Set(v) \\ Charles R Greathouse IV, Jan 10 2018
CROSSREFS
Subsequence of A000351 and A011557.
Sequence in context: A163477 A084664 A045620 * A112024 A362002 A245415
KEYWORD
easy,nonn
STATUS
approved