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.
%I A035372 #8 Aug 27 2015 05:57:23 %S A035372 1,1,2,2,2,4,4,5,7,7,9,12,13,16,19,22,26,31,36,41,48,56,63,75,85,96, %T A035372 112,126,143,165,184,210,238,267,302,340,381,428,480,538,599,672,748, %U A035372 832,930,1031,1144,1275,1408,1562,1730,1910,2111,2332,2571,2834,3121 %N A035372 Number of partitions of n into parts 5k+1 or 5k+3. %F A035372 a(n) ~ exp(2*Pi*sqrt(n/15)) * Gamma(1/5) * Gamma(3/5) / (4 * 3^(3/20) * 5^(7/20) * Pi^(6/5) * n^(13/20)). - _Vaclav Kotesovec_, Aug 27 2015 %t A035372 nmax = 100; Rest[CoefficientList[Series[Product[1/((1 - x^(5k+1))*(1 - x^(5k+3))), {k, 0, nmax}], {x, 0, nmax}], x]] (* _Vaclav Kotesovec_, Aug 27 2015 *) %K A035372 nonn %O A035372 1,3 %A A035372 _Olivier Gérard_