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!)
A258461 Number of partitions of n into parts of exactly 6 sorts which are introduced in ascending order. 3

%I #12 Dec 07 2020 14:00:54

%S 1,22,289,2957,26073,208516,1558219,11087756,76079368,507834013,

%T 3318628444,21330627775,135325210699,849659799754,5290544981423,

%U 32722489513367,201296535378562,1232850239039750,7523511821431264,45777353199866275,277862479920868778

%N Number of partitions of n into parts of exactly 6 sorts which are introduced in ascending order.

%H Alois P. Heinz, <a href="/A258461/b258461.txt">Table of n, a(n) for n = 6..1000</a>

%F a(n) ~ c * 6^n, where c = 1/(6!*Product_{n>=1} (1-1/6^n)) = 1/(6!*QPochhammer[1/6, 1/6]) = 0.001723855087202395653855120059043... . - _Vaclav Kotesovec_, Jun 01 2015

%p b:= proc(n, i, k) option remember; `if`(n=0, 1, `if`(i<1, 0,

%p b(n, i-1, k) +`if`(i>n, 0, k*b(n-i, i, k))))

%p end:

%p T:= (n, k)-> add(b(n$2, k-i)*(-1)^i/(i!*(k-i)!), i=0..k):

%p a:= n-> T(n,6):

%p seq(a(n), n=6..30);

%t b[n_, i_, k_] := b[n, i, k] = If[n == 0, 1, If[i < 1, 0, b[n, i - 1, k] + If[i > n, 0, k b[n - i, i, k]]]];

%t T[n_, k_] := Sum[b[n, n, k - i](-1)^i/(i!(k - i)!), {i, 0, k}];

%t Table[T[n, 6], {n, 6, 30}] (* _Jean-François Alcover_, Dec 07 2020, after _Alois P. Heinz_ *)

%Y Column k=6 of A256130.

%Y Cf. A320548.

%K nonn

%O 6,2

%A _Alois P. Heinz_, May 30 2015

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 April 25 06:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)