login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A239165 Number of partitions of 6^n into parts that are at most n with at least one part of each size. 2
0, 1, 17, 3781, 14942231, 1264608203048, 2555847904495965819, 132574244496779071303074376, 185560862224740635595130202984468935, 7271076505438083132065943012753686950455454055, 8205115354631567886718289443554629632451344416164686337673 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = [x^(6^n-n*(n+1)/2)] Product_{j=1..n} 1/(1-x^j).
a(n) ~ 6^(n*(n-1)) / (n!*(n-1)!). - Vaclav Kotesovec, Jun 05 2015
MATHEMATICA
maxExponent = 50; a[0] = 0; a[1] = 1;
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];
Table[an = a[n]; Print[n, " ", an]; an, {n, 0, 10}] (* Jean-François Alcover, Nov 15 2018 *)
CROSSREFS
Column k=6 of A238012.
Sequence in context: A228195 A032909 A367536 * A329168 A194015 A015058
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 11 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 21 21:44 EDT 2024. Contains 375353 sequences. (Running on oeis4.)