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

%I #13 Oct 15 2018 10:21:56

%S 1,7,33,130,463,1557,5031,15877,49240,151116,460173,1394645,4212071,

%T 12693724,38195286,114817389,344911117,1035659955,3108817911,

%U 9330152740,27997803871,84008165515,252053831034,756220333901,2268778132337,6806569134920,20420175154486

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

%H Alois P. Heinz, <a href="/A258458/b258458.txt">Table of n, a(n) for n = 3..1000</a>

%F a(n) ~ c * 3^n, where c = 1/(6*Product_{n>=1} (1-1/3^n)) = 1/(6*QPochhammer[1/3, 1/3]) = 1/(6*A100220) = 0.297552056999755698394581... . - _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,3):

%p seq(a(n), n=3..35);

%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 a[n_] := T[n, 3];

%t Table[a[n], {n, 3, 35}] (* _Jean-François Alcover_, May 22 2018, translated from Maple *)

%Y Column k=3 of A256130.

%Y Cf. A320545.

%K nonn

%O 3,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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)