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.

A239165 Number of partitions of 6^n into parts that are at most n with at least one part of each size.

This page as a plain text file.
%I A239165 #12 Nov 15 2018 15:53:05
%S A239165 0,1,17,3781,14942231,1264608203048,2555847904495965819,
%T A239165 132574244496779071303074376,185560862224740635595130202984468935,
%U A239165 7271076505438083132065943012753686950455454055,8205115354631567886718289443554629632451344416164686337673
%N A239165 Number of partitions of 6^n into parts that are at most n with at least one part of each size.
%H A239165 Alois P. Heinz, <a href="/A239165/b239165.txt">Table of n, a(n) for n = 0..37</a>
%H A239165 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])
%F A239165 a(n) = [x^(6^n-n*(n+1)/2)] Product_{j=1..n} 1/(1-x^j).
%F A239165 a(n) ~ 6^(n*(n-1)) / (n!*(n-1)!). - _Vaclav Kotesovec_, Jun 05 2015
%t A239165 maxExponent = 50; a[0] = 0; a[1] = 1;
%t A239165 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[6^n-n(n+1)/2+1] // Round];
%t A239165 Table[an = a[n]; Print[n, " ", an]; an, {n, 0, 10}] (* _Jean-François Alcover_, Nov 15 2018 *)
%Y A239165 Column k=6 of A238012.
%K A239165 nonn
%O A239165 0,3
%A A239165 _Alois P. Heinz_, Mar 11 2014