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

A280907
Least k such that cototient(k) has exactly n distinct prime factors.
0
4, 10, 42, 294, 3462, 45042, 760446, 14549526, 289194150, 8729875770
OFFSET
1,1
COMMENTS
Least k such that A001221(A051953(k)) = n.
EXAMPLE
a(1) = 4 because 4 - phi(4) = 2.
a(2) = 10 because 10 - phi(10) = 6 = 2 * 3.
a(3) = 42 because 42 - phi(42) = 30 = 2 * 3 * 5.
PROG
(PARI) a(n) = {my(k = 2); while(omega(k-eulerphi(k)) != n, k++); k; }
CROSSREFS
Sequence in context: A361938 A222475 A194993 * A372648 A332233 A149220
KEYWORD
nonn,more
AUTHOR
Altug Alkan, Jan 10 2017
EXTENSIONS
a(10) from Amiram Eldar, Sep 13 2024
STATUS
approved