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!)
A104098 a(n) = Sum_{k=1..n} binomial(n-1, k-1)*A008292(n, k) for n >= 1. 3
1, 2, 10, 68, 606, 6612, 85492, 1277096, 21641590, 410144180, 8595133548, 197346180792, 4926442358124, 132847425483528, 3848398710032616, 119187270233781456, 3929892162743796390, 137444081992905303540, 5082053733073190713660, 198081684441819323760920 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) ~ sqrt(3) * 2^(n-1) * n^n / exp(n). - Vaclav Kotesovec, Oct 09 2020, modified for offset 1, Oct 29 2023
EXAMPLE
1 = 1*1
2 = 1*1 + 1*1
10 = 1*1 + 2*4 + 1*1
68 = 1*1 + 3*11 + 3*11 + 1*1
...
MAPLE
a := n -> local k; add(binomial(n - 1, k - 1) * combinat:-eulerian1(n, k - 1), k = 1..n): seq(a(n), n = 1..20); # Peter Luschny, Oct 29 2023
MATHEMATICA
Table[Sum[Binomial[n-1, k-1] * Sum[(-1)^j * (k-j)^n * Binomial[n+1, j], {j, 0, k}], {k, 1, n}], {n, 1, 20}] (* Vaclav Kotesovec, Oct 09 2020 *)
CROSSREFS
Sequence in context: A136658 A329475 A165968 * A056755 A123617 A325054
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 29 2006
EXTENSIONS
Offset changed by Georg Fischer, Oct 29 2023
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 7 02:26 EDT 2024. Contains 372298 sequences. (Running on oeis4.)