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!)
A068939 a(n) = Bell(n^2), where Bell(n) are the Bell numbers, cf. A000110. 2
1, 1, 15, 21147, 10480142147, 4638590332229999353, 3819714729894818339975525681317, 10726137154573358400342215518590002633917247281 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = exp(-1)*Sum(k=>0, k^(n^2)/k!). - Benoit Cloitre, May 19 2002
Integral representation as n-th moment of a positive function on a positive half-axis, in Maple notation: a(n)=int(x^n*(sum(exp(-ln(x)^2/ (4*ln(k)))/(k!*sqrt(ln(k))), k=2..infinity)/ (2*exp(1)*sqrt(Pi)*x) +Dirac(1-x)/exp(1)), x=0..infinity), n=0, 1, ...
MATHEMATICA
Table[BellB[n^2], {n, 0, 8}] (* Vincenzo Librandi, Jul 16 2013 *)
PROG
(PARI) for(n=0, 50, print1(round(sum(i=0, 1000, i^(n^2)/(i)!)/exp(1)), ", "))
(Magma) [Bell(n^2): n in [0..8]]; // Vincenzo Librandi, Jul 16 2013
(Python)
from sympy import bell
def A068939(n): return bell(n**2) # Chai Wah Wu, Jun 22 2022
CROSSREFS
Cf. A000110.
Sequence in context: A068732 A174304 A208461 * A179106 A157643 A340291
KEYWORD
nonn
AUTHOR
Karol A. Penson, Mar 08 2002
STATUS
approved

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