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 A239162 #16 Nov 15 2018 11:10:18 %S A239162 0,1,4,48,3042,1067474,2215932130,29012104252380,2526293243761311036, %T A239162 1525710603023191548743988,6600334932211428773703751221040, %U A239162 209705652574790086852527310591449309624,49907101066058865036206450041083799915221352487 %N A239162 Number of partitions of 3^n into parts that are at most n with at least one part of each size. %H A239162 Alois P. Heinz, <a href="/A239162/b239162.txt">Table of n, a(n) for n = 0..49</a> %H A239162 A. V. Sills and D. Zeilberger, <a href="https://arxiv.org/abs/1108.4391">Formulae for the number of partitions of n into at most m parts (using the quasi-polynomial ansatz)</a>, arXiv:1108.4391 [math.CO], 2011. %F A239162 a(n) = [x^(3^n-n*(n+1)/2)] Product_{j=1..n} 1/(1-x^j). %F A239162 a(n) ~ 3^(n*(n-1)) / (n!*(n-1)!). - _Vaclav Kotesovec_, Jun 05 2015 %e A239162 a(2) = 4: 22221, 222111, 2211111, 21111111. %t A239162 maxExponent = 30; a[0] = 0; a[1] = 1; %t A239162 a[n_] := Module[{}, aparts = List @@ (Product[1/(1 - x^j), {j, 1, n}] // Apart); cc = aparts + O[x]^maxExponent // CoefficientList[#, x]&; f[k_] = Total[FindSequenceFunction[#, k]& /@ cc]; f[3^n - n(n+1)/2 + 1] // Round]; Table[an = a[n]; %t A239162 Print[n, " ", an]; an, {n, 0, 12}] (* _Jean-François Alcover_, Nov 15 2018 *) %Y A239162 Column k=3 of A238012. %K A239162 nonn %O A239162 0,3 %A A239162 _Alois P. Heinz_, Mar 11 2014