A336421 Number of ways to choose a divisor of a divisor, both having distinct prime exponents, of the n-th superprimorial number A006939(n).
1, 3, 13, 76, 571, 5309, 59341, 780149
Offset: 0
Examples
The a(2) = 13 ways: 12/1/1 12/2/1 12/3/1 12/4/1 12/12/1 12/2/2 12/3/3 12/4/2 12/12/2 12/4/4 12/12/3 12/12/4 12/12/12
Crossrefs
A000258 shifted once to the left is dominated by this sequence.
A336422 is the generalization to non-superprimorials.
A000110 counts divisors of superprimorials with distinct prime exponents.
A006939 lists superprimorials or Chernoff numbers.
A008302 counts divisors of superprimorials by bigomega.
A022915 counts permutations of prime indices of superprimorials.
A130091 lists numbers with distinct prime exponents.
A181796 counts divisors with distinct prime exponents.
A181818 gives products of superprimorials.
A317829 counts factorizations of superprimorials.
Programs
-
Mathematica
chern[n_]:=Product[Prime[i]^(n-i+1),{i,n}]; strsig[n_]:=UnsameQ@@Last/@FactorInteger[n]; Table[Total[Cases[Divisors[chern[n]],d_?strsig:>Count[Divisors[d],e_?strsig]]],{n,0,5}]
Comments