A238746 Number of distinct prime signatures that occur among the divisors of the n-th prime signature number (A025487(n)).
1, 2, 3, 3, 4, 5, 5, 7, 4, 6, 6, 9, 7, 7, 9, 11, 10, 8, 12, 9, 13, 5, 10, 13, 9, 15, 14, 15, 9, 14, 16, 10, 18, 19, 17, 13, 18, 10, 19, 11, 16, 21, 12, 15, 24, 19, 17, 22, 16, 22, 12, 23, 24, 6, 19, 20, 29, 21, 21, 26, 22, 25, 13, 30, 27, 11, 26, 25, 19, 34
Offset: 1
Keywords
Examples
5 members of A025487 divide A025487(6) = 12 (namely, 1, 2, 4, 6 and 12); therefore, a(6) = 5.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
lpsQ[n_] := n == 1 || (Max@ Differences[(f = FactorInteger[n])[[;;,2]]] < 1 && f[[-1, 1]] == Prime[Length[f]]); lps = Select[Range[6000], lpsQ]; c[n_] := Count[Divisors[n], ?(MemberQ[lps, #] &)]; c /@ lps (* _Amiram Eldar, Jan 21 2024 *)
Comments