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!)
A061686 Generalized Bell numbers. 4

%I #27 Jul 17 2020 10:23:35

%S 1,1,17,1540,461105,350813126,573843627152,1797582928354025,

%T 9904754169831094065,89944005095677792967482,

%U 1278494002506675052860358142,27281796399886236251265603339575,844252087185585895268923657508727440,36800471170748991972750857754287551544147

%N Generalized Bell numbers.

%H Vincenzo Librandi, <a href="/A061686/b061686.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!)^5 = exp(Sum_{n>=1} x^n / (n!)^5). - _Ilya Gutkovskiy_, Jul 17 2020

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

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

%p end:

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

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

%o (PARI) a61686=[1];A061686(n)={n>1||return(1);#a61686<n&&a61686=concat(a61686,vector(n-#a61686)); a61686[n]&&return(a61686[n]); a61686[n]=sum(k=0,n-1,binomial(n,k)^5*(n-k)*A061686(k))/n} \\ _M. F. Hasler_, May 11 2015

%Y Column k=5 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 July 19 16:24 EDT 2024. Contains 374410 sequences. (Running on oeis4.)