[go: up one dir, main page]

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

A025629
Numbers of form 6^i*10^j with i, j >= 0.
12
1, 6, 10, 36, 60, 100, 216, 360, 600, 1000, 1296, 2160, 3600, 6000, 7776, 10000, 12960, 21600, 36000, 46656, 60000, 77760, 100000, 129600, 216000, 279936, 360000, 466560, 600000, 777600, 1000000, 1296000, 1679616, 2160000, 2799360, 3600000, 4665600
OFFSET
1,2
LINKS
FORMULA
Sum_{n>=1} 1/a(n) = (6*10)/((6-1)*(10-1)) = 4/3. - Amiram Eldar, Sep 26 2020
a(n) ~ exp(sqrt(2*log(6)*log(10)*n)) / sqrt(60). - Vaclav Kotesovec, Sep 26 2020
MATHEMATICA
n = 10^6; Flatten[Table[6^i*10^j, {i, 0, Log[6, n]}, {j, 0, Log10[n/6^i]}]] // Sort (* Amiram Eldar, Sep 26 2020 *)
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*=6)); Set(v) \\ Charles R Greathouse IV, Jan 10 2018
KEYWORD
easy,nonn
STATUS
approved