OFFSET
1,3
COMMENTS
The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
Up to sign, a(n) is the number of acyclic spanning subgraphs of an undirected n-cycle whose component sizes are the prime indices of n.
FORMULA
a(n) = (-1)^(Omega(n) - 1) * A056239(n) * (Omega(n) - 1)! / Product c_i! where c_i is the multiplicity of prime(i) in the prime factorization of n.
MATHEMATICA
Table[If[n==1, 0, (-1)^(PrimeOmega[n]-1)*Total[Cases[FactorInteger[n], {p_, k_}:>k*PrimePi[p]]]*(PrimeOmega[n]-1)!/(Times@@Factorial/@FactorInteger[n][[All, 2]])], {n, 30}]
CROSSREFS
The unsigned version (except with a(1) = 1) is A319225.
The transition from p to e by Heinz numbers is A321752.
The transition from p to h by Heinz numbers is A321754.
Different orderings with and without signs and first terms are A115131, A210258, A263916, A319226, A330417.
KEYWORD
sign
AUTHOR
Gus Wiseman, Dec 14 2019
STATUS
approved