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!)
A061688 Generalized Bell numbers. 3

%I #23 Jul 17 2020 10:24:24

%S 1,1,65,48844,209175233,3464129078126,173566857025139312,

%T 22208366234650578141209,6409515697874502425444186817,

%U 3794729706423816704068204814925754,4276126299841623727960390049367617509190,8631647765438316626054238101611711249984175399

%N Generalized Bell numbers.

%H Alois P. Heinz, <a href="/A061688/b061688.txt">Table of n, a(n) for n = 0..100</a>

%H J.-M. Sixdeniers, K. A. Penson and A. I. Solomon, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL4/SIXDENIERS/bell.html">Extended Bell and Stirling Numbers From Hypergeometric Exponentiation</a>, J. Integer Seqs. Vol. 4 (2001), #01.1.4.

%F Sum_{n>=0} a(n) * x^n / (n!)^7 = exp(Sum_{n>=1} x^n / (n!)^7). - _Ilya Gutkovskiy_, Jul 17 2020

%p a:= proc(n) option remember; `if`(n=0, 1,

%p add(binomial(n, k)^7*(n-k)*a(k)/n, k=0..n-1))

%p end:

%p seq(a(n), n=0..12); # _Alois P. Heinz_, Nov 07 2008

%t a[n_] := a[n] = If[n == 0, 1, Sum[Binomial[n, k]^7*(n-k)*a[k]/n, {k, 0, n-1}]]; Table[a[n], {n, 0, 12}] (* _Jean-François Alcover_, Apr 17 2014, after _Alois P. Heinz_ *)

%Y Column k=7 of A275043.

%K nonn

%O 0,3

%A _N. J. A. Sloane_, Jun 18 2001

%E More terms from _Alois P. Heinz_, Nov 07 2008

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 13:26 EDT 2024. Contains 371971 sequences. (Running on oeis4.)