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

A085128
Multiples of 5 which are members of A002473. Or multiples of 5 with the largest prime divisor <= 7.
7
5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 60, 70, 75, 80, 90, 100, 105, 120, 125, 135, 140, 150, 160, 175, 180, 200, 210, 225, 240, 245, 250, 270, 280, 300, 315, 320, 350, 360, 375, 400, 405, 420, 450, 480, 490, 500, 525, 540, 560, 600, 625, 630, 640, 675, 700
OFFSET
1,1
FORMULA
a(n) = 5*A002473(n). - Michel Marcus, Aug 15 2017
Sum_{n>=1} 1/a(n) = 7/8. - Amiram Eldar, Sep 22 2024
MATHEMATICA
With[{p = Prime[Range[4]]}, 5 * Select[Range[140], Times @@ (p^IntegerExponent[#, p]) == # &]] (* Amiram Eldar, Sep 22 2024 *)
PROG
(PARI) lista(nn) = {for (n=1, nn, if (vecmax(factor(5*n)[, 1]) <= 7, print1(5*n, ", ")); ); } \\ Michel Marcus, Aug 15 2017
CROSSREFS
Intersection of A008587 (multiples of 5) and A002473 (7-smooth numbers).
Sequence in context: A172328 A330003 A061821 * A313734 A292656 A313735
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Jul 06 2003
EXTENSIONS
More terms from David Wasserman, Jan 28 2005
Offset corrected by Michel Marcus, Aug 15 2017
STATUS
approved