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!)
A368309 Numbers k such that all primes dividing the k-th composite number divide k as well. 0
6, 15, 20, 24, 30, 96, 168, 189, 300, 348, 414, 510, 660, 1260, 1458, 1738, 2214, 2805, 3010, 3984, 4330, 4485, 5798, 5859, 5880, 6360, 7364, 7420, 7656, 8245, 8770, 9096, 10340, 10818, 12882, 12925, 13108, 23944, 33852, 37134, 44100, 45960, 47740, 49110, 55260, 55518, 58140, 63336, 73910, 76890 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that k == 0 (mod p) for all primes p dividing A002808(k).
Numbers k such that A137924(k) = 1.
Numbers k such that k == 0 (mod A007947(A002808(k))).
LINKS
EXAMPLE
a(4) = 24 is a term because A002808(24), the 24th composite number, is 36, and the primes 2 and 3 that divide 36 also divide 24.
MAPLE
R:= NULL: n:= 0: count:= 0:
for i from 4 while count < 100 do
if not isprime(i) then
n:= n+1;
if map(t -> n mod t, numtheory:-factorset(i)) = {0} then
count:= count+1; R:= R, n;
fi
fi
od:
R;
CROSSREFS
Sequence in context: A045848 A335268 A294651 * A044439 A348866 A128253
KEYWORD
nonn
AUTHOR
Robert Israel, Dec 20 2023
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 18 09:54 EDT 2024. Contains 372620 sequences. (Running on oeis4.)