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.

A117957 Number of partitions of n into parts larger than 1 and congruent to 1 mod 4.

This page as a plain text file.
%I A117957 #6 Mar 07 2016 04:32:34
%S A117957 1,0,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,2,1,1,1,2,2,1,2,3,3,2,2,4,4,3,3,
%T A117957 5,6,5,4,6,8,7,6,8,10,10,9,10,13,13,12,14,17,18,16,18,22,23,22,23,28,
%U A117957 31,29,30,36,39,39,39,45,51,50,51,57,64,65,65,73,81,83,84,91,102,106,106
%N A117957 Number of partitions of n into parts larger than 1 and congruent to 1 mod 4.
%C A117957 Also number of partitions of n such that 2k and 2k+1 occur with the same multiplicities. Example: a(26)=3 because we have [11,10,3,2], [9,8,5,4] and [7,7,6,6]. It is easy to find a bijection between these partitions and those described in the definition.
%F A117957 G.f.: 1/product(1-x^(4i+1), i=1..infinity).
%F A117957 a(n) ~ exp(sqrt(n/6)*Pi) * Pi^(1/4) * Gamma(1/4) / (2^(31/8) * 3^(5/8) * n^(9/8)). - _Vaclav Kotesovec_, Mar 07 2016
%e A117957 a(26)=3 because we have [21,5],[17,9] and [13,13].
%p A117957 g:=1/product(1-x^(4*i+1),i=1..50): gser:=series(g,x=0,93): seq(coeff(gser,x,n),n=0..88);
%t A117957 nmax = 100; CoefficientList[Series[Product[1/(1-x^(4*k+1)), {k, 1, nmax}], {x, 0, nmax}], x] (* _Vaclav Kotesovec_, Mar 07 2016 *)
%Y A117957 Cf. A035451, A035462.
%K A117957 nonn
%O A117957 0,19
%A A117957 _Emeric Deutsch_, Apr 05 2006