OFFSET
1,7
COMMENTS
Previous name: Number of different values of A007947(m_k) when A007947(m_j) = A007947(m_k) and A056239(m_j) = A056239(m_k) = n, where k>1 ( j runs from 1 to k-1 ).
Without the restriction of being shared by at least two solutions, the number of possible values of the squarefree kernel of the solutions x to A056239(x) = n is A088314(n). - Amiram Eldar, Jun 18 2025
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..99
EXAMPLE
MATHEMATICA
a[n_] := Count[Tally[DeleteDuplicates /@ IntegerPartitions[n]][[;; , 2]], _?(# > 1 &)]; Array[a, 50] (* Amiram Eldar, Jun 18 2025 *)
PROG
(PARI) a(n) = {my(v = List(), c = 0); forpart(p = n, listput(v, vecprod(apply(prime, Set(p))))); v = matreduce(Vec(v))[, 2]; for(i = 1, #v, if(v[i] > 1, c++)); c; } \\ Amiram Eldar, Jun 18 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Naohiro Nomoto, Nov 06 2003
EXTENSIONS
Name changed, a(29) corrected and (30)-a(53) added by Amiram Eldar, Jun 18 2025
STATUS
approved
