[go: up one dir, main page]

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!)
A257988 Number of parts that are larger than the number of 1's in the partition having Heinz number n. 2
0, 0, 1, 0, 1, 1, 1, 0, 2, 1, 1, 0, 1, 1, 2, 0, 1, 2, 1, 1, 2, 1, 1, 0, 2, 1, 3, 1, 1, 2, 1, 0, 2, 1, 2, 0, 1, 1, 2, 0, 1, 2, 1, 1, 3, 1, 1, 0, 2, 2, 2, 1, 1, 3, 2, 1, 2, 1, 1, 1, 1, 1, 3, 0, 2, 2, 1, 1, 2, 2, 1, 0, 1, 1, 3, 1, 2, 2, 1, 0, 4, 1, 1, 1, 2, 1, 2, 1, 1, 3, 2, 1, 2, 1, 2, 0, 1, 2, 3, 2, 1, 2, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,9
COMMENTS
We define the Heinz number of a partition p = [p_1, p_2, ..., p_r] to be Product(p_j-th prime, j=1...r) (a concept used by Alois P. Heinz in A215366 as an "encoding" of a partition). For example, for the partition [1, 1, 2, 4, 10] we get 2*2*3*7*29 = 2436.
In the Maple program the subprogram b yields the number of 1's in the partition having Heinz number n and the subprogram B yields the partition having Heinz number n.
The considered partition statistic is needed in the partition statistic "crank" (A257989).
LINKS
G. E. Andrews and F. G. Garvan, Dyson's crank of a partition, Bull. Amer. Math. Soc., 18 (1988), 167-171.
EXAMPLE
a(252) = 1 because the partition having Heinz number 252 = 2^2 * 3^2 * 7 is [1,1,2,2,4] and exactly one part, namely 4, is larger than 2 (the number of 1's).
a(945) = 5 because the partition having Heinz number 945 = 3^3 * 5 * 7 is [2,2,2,3,4] and all parts are larger than 0 (the number of 1's).
MAPLE
with(numtheory): a := proc (n) local b, B, c, i: b := proc (n) if `mod`(n, 2) = 1 then 0 else 1+b((1/2)*n) end if end proc: B := proc (n) local nn, j, m: nn := op(2, ifactors(n)): for j to nops(nn) do m[j] := op(j, nn) end do: [seq(seq(pi(op(1, m[i])), q = 1 .. op(2, m[i])), i = 1 .. nops(nn))] end proc: c := 0: for i to bigomega(n) do if b(n) < B(n)[i] then c := c+1 else end if end do: c end proc: seq(a(n), n = 1 .. 150);
# second Maple program:
a:= n->(l->nops(select(x->x>add(`if`(i=1, 1, 0), i=l), l)))(
[seq(numtheory[pi](i[1])$i[2], i=ifactors(n)[2])]):
seq(a(n), n=1..100); # Alois P. Heinz, May 10 2016
MATHEMATICA
a[n_] := Function[l, Length[Select[l, # > Sum[If[i == 1, 1, 0], {i, l}]&]]][Flatten @ Table[Array[PrimePi[i[[1]]]&, i[[2]]], {i, FactorInteger[n]}] ]; Table[a[n], {n, 1, 100}] (* Jean-François Alcover, Dec 10 2016 after Alois P. Heinz *)
CROSSREFS
Sequence in context: A341675 A358218 A100073 * A340379 A075685 A037906
KEYWORD
nonn
AUTHOR
Emeric Deutsch, May 16 2015
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 August 29 09:09 EDT 2024. Contains 375511 sequences. (Running on oeis4.)