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 A258294 #11 Jun 11 2015 05:12:30 %S A258294 1,1,9,127,2280,46262,1015691,23541165,567852809,14123231487, %T A258294 359874480333,9351900623083,247006639629275,6613877399621729, %U A258294 179171447281396640,4902895256737984134,135346525073067516814,3765244155890019687101,105465364199865165010867 %N A258294 Number of partitions of 4*n^2 into parts that are at most n. %H A258294 Vaclav Kotesovec, <a href="/A258294/b258294.txt">Table of n, a(n) for n = 0..247</a> %F A258294 a(n) ~ c * d^n / n^2, where d = 31.379319973863251370746442877119704410889..., c = 0.0397666338404544208556554596295683858... . %p A258294 T:=proc(n, k) option remember; `if`(n=0 or k=1, 1, T(n, k-1) + `if`(n<k, 0, T(n-k, k))) end proc: seq(T(4*n^2, n), n=0..20); %t A258294 (* A program to compute the constant d = 31.37931997... *) With[{j=4}, r^(2*j+1)/(r-1) /.FindRoot[-PolyLog[2,1-r] == (j+1/2)*Log[r]^2, {r, E}, WorkingPrecision->100]] (* _Vaclav Kotesovec_, Jun 10 2015 *) %Y A258294 Cf. A206226, A258296, A258293, A258295. %K A258294 nonn %O A258294 0,3 %A A258294 _Vaclav Kotesovec_, May 25 2015