The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A080194 7-smooth numbers which are not 5-smooth. 15
7, 14, 21, 28, 35, 42, 49, 56, 63, 70, 84, 98, 105, 112, 126, 140, 147, 168, 175, 189, 196, 210, 224, 245, 252, 280, 294, 315, 336, 343, 350, 378, 392, 420, 441, 448, 490, 504, 525, 560, 567, 588, 630, 672, 686, 700, 735, 756, 784, 840, 875, 882, 896, 945, 980 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers of the form 7*2^r*3^s*5^t*7^u with r, s, t, u >= 0.
Multiples of 7 which are members of A002473. Or multiples of 7 with the largest prime divisor < 10.
Numbers whose greatest prime factor (A006530) is 7. - M. F. Hasler, Nov 21 2018
LINKS
FORMULA
a(n) = 7 * A002473(n). - David A. Corneth, Nov 22 2018
Sum_{n>=1} 1/a(n) = 5/8. - Amiram Eldar, Nov 10 2020
EXAMPLE
28 = 2^2*7 is a term but 30 = 2*3*5 is not.
MATHEMATICA
Select[Range[999], FactorInteger[#][[-1, 1]] == 7 &] (* Giovanni Resta, Nov 22 2018 *)
PROG
(PARI) A080194_list(M)={my(L=List(), a, b, c); for(r=1, logint(M\1, 7), a=7^r; for(s=0, logint(M\a, 3), b=a*3^s; for(t=0, logint(M\b, 5), c=b*5^t; for(u=0, logint(M\c, 2), listput(L, c<<u))))); Set(L)} \\ Could be replaced by smooth(primes(4), M) from A051037. - Edited by M. F. Hasler, Nov 22 2018
(PARI) select( is_A080194(n)={n>1 && vecmax(factor(n, 7)[, 1])==7}, [0..10^3]) \\ Defines is_A080194(), used elsewhere. The select() command is a check and illustration. For longer lists, use list() above. - M. F. Hasler, Nov 21 2018
CROSSREFS
Sequence in context: A182341 A008589 A085130 * A206717 A043393 A028437
KEYWORD
easy,nonn
AUTHOR
Klaus Brockhaus, Feb 10 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 02:26 EDT 2024. Contains 372528 sequences. (Running on oeis4.)