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!)
A066260 In the prime factorization of n replace the k-th prime with the k-th composite number, k > 0. 3
1, 4, 6, 16, 8, 24, 9, 64, 36, 32, 10, 96, 12, 36, 48, 256, 14, 144, 15, 128, 54, 40, 16, 384, 64, 48, 216, 144, 18, 192, 20, 1024, 60, 56, 72, 576, 21, 60, 72, 512, 22, 216, 24, 160, 288, 64, 25, 1536, 81, 256, 84, 192, 26, 864, 80, 576, 90, 72, 27, 768, 28, 80, 324 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Completely multiplicative with a(p) = A002808(A049084(p)), p prime.
EXAMPLE
a(10) = a(2*5) = a(prime(1)*prime(3)) = a(prime(1))*a(prime(3)) = comp(1)*comp(3) = 4 * 8 = 32.
MATHEMATICA
nmax = 100;
compos = Select[Range[FindRoot[n == nmax + PrimePi[n] + 1,
{n, nmax, 2 nmax}][[1, 2]] // Floor], CompositeQ];
a[n_] := If[n == 1, 1, Product[{p, e} = pe; compos[[PrimePi[p]]]^e,
{pe, FactorInteger[n]}]];
Array[a, nmax] (* Jean-François Alcover, Nov 21 2021 *)
PROG
(PARI) Composite(n) = local(k); k=n + primepi(n) + 1; while (k != n + primepi(k) + 1, k = n + primepi(k) + 1); return(k)
for (n=1, 1000, f=factor(n); a=1; for (i=1, matsize(f)[1], a*=Composite(primepi(f[i, 1]))^f[i, 2]); write("b066260.txt", n, " ", a) ) \\ Harry J. Smith, Feb 07 2010
CROSSREFS
Sequence in context: A356801 A239323 A009463 * A248591 A333140 A141042
KEYWORD
nonn,mult
AUTHOR
Reinhard Zumkeller, Dec 10 2001
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 25 10:51 EDT 2024. Contains 371967 sequences. (Running on oeis4.)