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!)
A291144 a(n) is the smallest number k such that psi(k) = A001615(k) is the product of n distinct primes. 0
2, 4, 25, 218, 1538, 20018, 570569, 9869858, 148728578, 7865117258, 198255197138, 5481986730218, 235725429399458, 12372844050106538, 587192044634054858, 32820287260716215258, 1325292444739061819018, 91010656573966064915978, 8683441125519459364805738 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(4) = 218 = 2*109 because psi(2*109) = 2*3*5*11 and 218 is the least number with this property.
PROG
(PARI) a001615(n) = n*sumdivmult(n, d, issquarefree(d)/d);
a(n) = {my(k = 1); while (!issquarefree(a001615(k)) || bigomega(a001615(k)) != n, k++); k; }
(PARI) v=vector(100); forfactored(k=2, 10^9, f=factor(A001615(k[1], k[2]))[, 2]; if(vecmax(f)==1 && (#f)<=#v && v[#f]==0, v[#f]=k[1]; print(#f" "k[1]))) \\ Charles R Greathouse IV, Aug 19 2017
CROSSREFS
Cf. A001615.
Sequence in context: A266495 A365097 A119029 * A162120 A162121 A162122
KEYWORD
nonn
AUTHOR
Altug Alkan, Aug 18 2017
EXTENSIONS
a(10) from Charles R Greathouse IV, Aug 19 2017
a(11)-a(19) from Giovanni Resta, Aug 21 2017
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 April 18 21:51 EDT 2024. Contains 371781 sequences. (Running on oeis4.)