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!)
A292503 Number of partitions of n with n sorts of part 1 which are introduced in ascending order. 7

%I #14 May 17 2018 13:44:00

%S 1,1,3,7,20,63,233,966,4454,22404,121616,706362,4361977,28494493,

%T 196087988,1416515642,10709058487,84505818259,694397612486,

%U 5929368380664,52513737017847,481577858196052,4565851595293151,44692014464166068,451058715629365617

%N Number of partitions of n with n sorts of part 1 which are introduced in ascending order.

%H Alois P. Heinz, <a href="/A292503/b292503.txt">Table of n, a(n) for n = 0..250</a>

%e a(2) = 3: 2, 1a1a, 1a1b.

%e a(3) = 7: 3, 21a, 1a1a1a, 1a1a1b, 1a1b1a, 1a1b1b, 1a1b1c.

%p f:= (n, k)-> add(Stirling2(n, j), j=0..k):

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

%p f(n, k), add(b(n-i*j, i-1, k), j=0..n/i))

%p end:

%p a:= n-> b(n$3):

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

%t f[n_, k_] := Sum[StirlingS2[n, j], {j, 0, k}];

%t b[n_, i_, k_] := b[n, i, k] = If[n == 0 || i < 2, f[n, k], Sum[b[n - i*j, i - 1, k], {j, 0, n/i}]];

%t a[n_] := b[n, n, n];

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

%Y Cf. A292462, A292463, A292507.

%Y Main diagonal of A292745.

%Y Row sums of A292746.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Sep 17 2017

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 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)