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.

A258297 Number of partitions of n*(n+1)*(n+2) into parts that are at most n.

This page as a plain text file.
%I A258297 #9 Sep 12 2016 02:41:37
%S A258297 1,1,13,331,13561,776594,57773582,5320252480,586352480958,
%T A258297 75438829494131,11116206652400681,1848033852642973772,
%U A258297 342436117841931383400,70020229273505952925559,15667865938977592230047929,3809417116914053901413289249,1000291703885548521424635046427
%N A258297 Number of partitions of n*(n+1)*(n+2) into parts that are at most n.
%H A258297 Vaclav Kotesovec, <a href="/A258297/b258297.txt">Table of n, a(n) for n = 0..134</a>
%F A258297 a(n) ~ exp(2*n + 13/4) * n^(n-3) / (2*Pi).
%p A258297 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(n*(n+1)*(n+2), n), n=0..20);
%Y A258297 Cf. A238608, A258298, A258299, A258300, A258301.
%K A258297 nonn
%O A258297 0,3
%A A258297 _Vaclav Kotesovec_, May 25 2015