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

A025617
Numbers of form 4^i*5^j, with i, j >= 0.
4
1, 4, 5, 16, 20, 25, 64, 80, 100, 125, 256, 320, 400, 500, 625, 1024, 1280, 1600, 2000, 2500, 3125, 4096, 5120, 6400, 8000, 10000, 12500, 15625, 16384, 20480, 25600, 32000, 40000, 50000, 62500, 65536, 78125, 81920, 102400, 128000, 160000, 200000, 250000
OFFSET
1,2
LINKS
FORMULA
Sum_{n>=1} 1/a(n) = (4*5)/((4-1)*(5-1)) = 5/3. - Amiram Eldar, Sep 24 2020
a(n) ~ exp(sqrt(2*log(4)*log(5)*n)) / sqrt(20). - Vaclav Kotesovec, Sep 24 2020
MATHEMATICA
n = 10^5; Flatten[Table[4^i*5^j, {i, 0, Log[4, n]}, {j, 0, Log[5, n/4^i]}]] // Sort (* Amiram Eldar, Sep 24 2020 *)
CROSSREFS
Subsequence of A003592.
Sequence in context: A137527 A024854 A309759 * A227855 A078581 A092809
KEYWORD
easy,nonn
STATUS
approved