The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A326844 Let y be the integer partition with Heinz number n. Then a(n) is the size of the complement, in the minimal rectangular partition containing the Young diagram of y, of the Young diagram of y. 22
0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 2, 0, 3, 1, 0, 0, 1, 0, 4, 2, 4, 0, 3, 0, 5, 0, 6, 0, 3, 0, 0, 3, 6, 1, 2, 0, 7, 4, 6, 0, 5, 0, 8, 2, 8, 0, 4, 0, 2, 5, 10, 0, 1, 2, 9, 6, 9, 0, 5, 0, 10, 4, 0, 3, 7, 0, 12, 7, 4, 0, 3, 0, 11, 1, 14, 1, 9, 0, 8, 0, 12, 0, 8, 4, 13, 8, 12, 0, 4, 2, 16, 9, 14, 5, 5, 0, 3, 6, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,10
COMMENTS
The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
LINKS
FORMULA
a(n) = A001222(n) * A061395(n) - A056239(n).
EXAMPLE
The partition with Heinz number 7865 is (6,5,5,3), with diagram:
o o o o o o
o o o o o .
o o o o o .
o o o . . .
The size of the complement (shown in dots) in a 6 X 4 rectangle is 5, so a(7865) = 5.
MATHEMATICA
Table[If[n==1, 0, With[{y=Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]}, Max[y]*Length[y]-Total[y]]], {n, 100}]
PROG
(PARI)
A056239(n) = if(1==n, 0, my(f=factor(n)); sum(i=1, #f~, f[i, 2] * primepi(f[i, 1])));
A061395(n) = if(n>1, primepi(vecmax(factor(n)[, 1])), 0);
A326844(n) = ((bigomega(n)*A061395(n)) - A056239(n)); \\ Antti Karttunen, Feb 10 2023
CROSSREFS
Sequence in context: A035455 A029191 A094098 * A261079 A182485 A164960
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 26 2019
EXTENSIONS
Data section extended up to term a(100) by Antti Karttunen, Feb 10 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 13:17 EDT 2024. Contains 372552 sequences. (Running on oeis4.)