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 A035374 #8 Aug 27 2015 05:59:04 %S A035374 0,0,1,1,0,1,1,2,2,1,2,4,3,3,4,6,6,7,7,9,11,12,12,16,17,20,23,25,27, %T A035374 33,36,41,44,50,57,66,69,77,88,100,107,120,131,149,165,180,196,222, %U A035374 242,268,293,323,353,394,428,470,513,565,617,680,734,805,882,966,1046 %N A035374 Number of partitions of n into parts 5k+3 or 5k+4. %F A035374 a(n) ~ exp(2*Pi*sqrt(n/15)) * Gamma(3/5) * Gamma(4/5) / (4 * 3^(9/20) * 5^(1/20) * Pi^(3/5) * n^(19/20)). - _Vaclav Kotesovec_, Aug 27 2015 %t A035374 nmax = 100; Rest[CoefficientList[Series[Product[1/((1 - x^(5k+3))*(1 - x^(5k+4))), {k, 0, nmax}], {x, 0, nmax}], x]] (* _Vaclav Kotesovec_, Aug 27 2015 *) %K A035374 nonn %O A035374 1,8 %A A035374 _Olivier Gérard_