A353394 Product of prime shadows of prime indices of n (with multiplicity).
1, 1, 2, 1, 2, 2, 3, 1, 4, 2, 2, 2, 4, 3, 4, 1, 2, 4, 5, 2, 6, 2, 3, 2, 4, 4, 8, 3, 4, 4, 2, 1, 4, 2, 6, 4, 6, 5, 8, 2, 2, 6, 4, 2, 8, 3, 4, 2, 9, 4, 4, 4, 7, 8, 4, 3, 10, 4, 2, 4, 6, 2, 12, 1, 8, 4, 2, 2, 6, 6, 6, 4, 4, 6, 8, 5, 6, 8, 4, 2, 16, 2, 2, 6, 4, 4
Offset: 1
Keywords
Examples
We have 42 = prime(1)*prime(2)*prime(4), so a(42) = 1*2*3 = 6.
Crossrefs
Positions of first appearances are A353397.
A003963 gives product of prime indices.
A324850 lists numbers divisible by the product of their prime indices.
A325131 lists numbers relatively prime to their prime shadow.
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; red[n_]:=If[n==1,1,Times@@Prime/@Last/@FactorInteger[n]]; Table[Times@@red/@primeMS[n],{n,100}]
Comments