login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A323525
Number of ways to arrange the parts of a multiset whose multiplicities are the prime indices of n into a square matrix.
6
1, 1, 0, 0, 0, 0, 1, 0, 6, 4, 0, 12, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 126, 252, 0, 0, 0, 0, 0, 0
OFFSET
1,9
COMMENTS
This multiset (row n of A305936) is generally not the same as the multiset of prime indices of n. For example, the prime indices of 12 are {1,1,2}, while a multiset whose multiplicities are {1,1,2} is {1,1,2,3}.
FORMULA
If A056239(n) is a perfect square, a(n) = A318762(n). Otherwise, a(n) = 0.
EXAMPLE
The a(9) = 6 matrices:
[1 1] [1 2] [1 2] [2 1] [2 1] [2 2]
[2 2] [1 2] [2 1] [1 2] [2 1] [1 1]
The a(38) = 9 matrices:
[1 1 1] [1 1 1] [1 1 1] [1 1 1] [1 1 1] [1 1 1] [1 1 2] [1 2 1] [2 1 1]
[1 1 1] [1 1 1] [1 1 1] [1 1 2] [1 2 1] [2 1 1] [1 1 1] [1 1 1] [1 1 1]
[1 1 2] [1 2 1] [2 1 1] [1 1 1] [1 1 1] [1 1 1] [1 1 1] [1 1 1] [1 1 1]
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
nrmptn[n_]:=Join@@MapIndexed[Table[#2[[1]], {#1}]&, Reverse[primeMS[n]]];
Table[If[IntegerQ[Sqrt[Total[primeMS[n]]]], Length[Permutations[nrmptn[n]]], 0], {n, 100}]
CROSSREFS
The positions of 0's are numbers whose sum of prime indices is not a perfect square (A323527).
The positions of 1's are primes indexed by squares (A323526).
Sequence in context: A097047 A331421 A197581 * A166978 A356547 A365956
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 17 2019
STATUS
approved