cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A055922 Number of partitions of n in which each part occurs an odd number (or zero) times.

This page as a plain text file.
%I A055922 #50 Jun 14 2023 17:28:46
%S A055922 1,1,1,3,2,5,6,9,9,16,20,25,32,40,54,69,84,101,136,156,202,244,306,
%T A055922 357,448,527,652,773,944,1103,1346,1574,1885,2228,2640,3106,3684,4302,
%U A055922 5052,5931,6924,8079,9416,10958,12718,14824,17078,19820,22860,26433
%N A055922 Number of partitions of n in which each part occurs an odd number (or zero) times.
%H A055922 Alois P. Heinz, <a href="/A055922/b055922.txt">Table of n, a(n) for n = 0..10000</a>
%H A055922 F. C. Auluck, K. S. Singwi and B. K. Agarwala, <a href="http://www.dli.gov.in/data_copy/upload/INSA/INSA_2/20005a88_147.pdf">On a new type of partition</a>, Proc. Nat. Inst. Sci. India 16 (1950) 147-156.
%H A055922 Steven Finch, <a href="/A000219/a000219_1.pdf">Integer Partitions</a>, September 22, 2004, page 5. [Cached copy, with permission of the author]
%H A055922 Daniel Herden, Mark R. Sepanski, Jonathan Stanfill, Cordell Hammon, Joel Henningsen, Henry Ickes, and Indalecio Ruiz, <a href="https://arxiv.org/abs/2101.04058">Partitions With Designated Summands Not Divisible by 2^L, 2, and 3^L Modulo 2, 4, and 3</a>, arXiv:2101.04058 [math.CO], 2021. See also <a href="http://math.colgate.edu/~integers/x43/x43.pdf">Integers</a> (2023) Vol. 23, Art. No. A43.
%H A055922 James A. Sellers and Fabrizio Zanello, <a href="https://arxiv.org/abs/2004.06204">On the parity of the number of partitions with odd multiplicities</a>, arXiv:2004.06204 [math.CO], 2020.
%F A055922 EULER transform of b where b has g.f. Sum {k>0} c(k)*x^k/(1-x^k) where c is inverse EULER transform of characteristic function of odd numbers.
%F A055922 G.f.: Product_{i>0} (1+x^i-x^(2*i))/(1-x^(2*i)). - _Vladeta Jovovic_, Feb 03 2004
%F A055922 Asymptotics (Auluck, Singwi, Agarwala, 1950): a(n) ~ B/(2*Pi*n) * exp(2*B*sqrt(n)), where B = sqrt(Pi^2/12 + 2*log(phi)^2), where phi is the golden ratio. - _Vaclav Kotesovec_, Oct 27 2014
%e A055922 There exist 11 partitions of 6. For six of these partitions, each part occurs an odd number times, they are 6 = 5 + 1 = 4 + 2 = 3 + 2 + 1 = 3 + 1+1+1 = 2+2+2, hence a(6) = 6. The five other partitions are 4 + 1+1 = 3+3 = 2+2 + 1+1 = 2 + 1+1+1+1 = 1+1+1+1+1+1.
%p A055922 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
%p A055922       add(`if`(irem(j, 2)=0, 0, b(n-i*j, i-1)), j=1..n/i)
%p A055922        +b(n, i-1)))
%p A055922     end:
%p A055922 a:= n-> b(n$2):
%p A055922 seq(a(n), n=0..60);  # _Alois P. Heinz_, May 31 2014
%t A055922 b[n_, i_] := b[n, i] = If[n == 0, 1, If[i<1, 0, Sum[If[Mod[j, 2] == 0, 0, b[n-i*j, i-1]], {j, 1, n/i}] + b[n, i-1]]]; a[n_] := b[n, n]; Table[a[n], {n, 0, 60}] (* _Jean-François Alcover_, Feb 24 2015, after _Alois P. Heinz_ *)
%o A055922 (PARI) { my(n=60); Vec(prod(k=1, n, 1 + sum(r=0, n\(2*k), x^(k*(2*r+1))) + O(x*x^n))) } \\ _Andrew Howroyd_, Dec 22 2017
%Y A055922 Cf. A000041, A007690, A055923, A249389.
%Y A055922 Column k=0 of A264399.
%K A055922 nonn
%O A055922 0,4
%A A055922 _Christian G. Bower_, Jun 23 2000