The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A167008 a(n) = Sum_{k=0..n} C(n,k)^k. 14
1, 2, 4, 14, 106, 1732, 66634, 5745700, 1058905642, 461715853196, 461918527950694, 989913403174541980, 5009399946447021173140, 60070720443204091719085184, 1548154498059133199618813305334, 92346622775540905956057053976278584 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Row sums of A219206.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..75
FORMULA
Limit_{n->oo} a(n)^(1/n^2) = (1-r)^(-r/2) = 1.533628065110458582053143..., where r = A220359 = 0.70350607643066243... is the root of the equation (1-r)^(2*r-1) = r^(2*r). - Vaclav Kotesovec, Dec 12 2012
MATHEMATICA
Flatten[{1, Table[Sum[Binomial[n, k]^k, {k, 0, n}], {n, 20}]}]
(* Program for numerical value of the limit a(n)^(1/n^2) *) (1-r)^(-r/2)/.FindRoot[(1-r)^(2*r-1)==r^(2*r), {r, 1/2}, WorkingPrecision->100] (* Vaclav Kotesovec, Dec 12 2012 *)
Total/@Table[Binomial[n, k]^k, {n, 0, 20}, {k, 0, n}] (* Harvey P. Dale, Oct 19 2021 *)
PROG
(PARI) a(n)=sum(k=0, n, binomial(n, k)^k)
(Haskell) a167008 = sum . a219206_row -- Reinhard Zumkeller, Feb 27 2015
(Magma) [(&+[Binomial(n, j)^j: j in [0..n]]): n in [0..20]]; // G. C. Greubel, Aug 26 2022
(SageMath) [sum(binomial(n, j)^j for j in (0..n)) for n in (0..20)] # G. C. Greubel, Aug 26 2022
CROSSREFS
Sequence in context: A219767 A000609 A245079 * A329234 A238638 A240973
KEYWORD
nonn,nice
AUTHOR
Paul D. Hanna, Nov 17 2009
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 May 14 04:29 EDT 2024. Contains 372528 sequences. (Running on oeis4.)