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 A035373 #8 Aug 27 2015 05:58:15 %S A035373 0,1,0,2,0,2,1,3,2,3,3,5,4,7,5,10,7,13,10,16,15,20,20,26,26,34,33,45, %T A035373 42,56,55,70,71,86,91,109,113,136,140,170,174,209,217,255,270,311,331, %U A035373 381,404,465,491,565,597,681,726,820,878,985,1056,1185,1265,1419,1515 %N A035373 Number of partitions of n into parts 5k+2 or 5k+4. %F A035373 a(n) ~ exp(2*Pi*sqrt(n/15)) * Gamma(2/5) * Gamma(4/5) / (4 * 3^(7/20) * 5^(3/20) * Pi^(4/5) * n^(17/20)). - _Vaclav Kotesovec_, Aug 27 2015 %t A035373 nmax = 100; Rest[CoefficientList[Series[Product[1/((1 - x^(5k+2))*(1 - x^(5k+4))), {k, 0, nmax}], {x, 0, nmax}], x]] (* _Vaclav Kotesovec_, Aug 27 2015 *) %K A035373 nonn %O A035373 1,4 %A A035373 _Olivier Gérard_