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!)
A217488 Alternating sums of the squares of the numbers in sequence A080253 5
1, 8, 281, 21328, 2858481, 596558808, 179058197641, 73110755339168, 38977936014004961, 26295624802015360168, 21898514473870334203641, 22064773395630274673891568, 26456951179676525013504937681, 37229662306608638451691410580088 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = sum((-1)^(n-k)*c(k)^2,k=0..n), where c(n) = A080253(n).
a(n) ~ (n!)^2 * 2^(2*n-1) / (log(2))^(2*n + 2). - Vaclav Kotesovec, Nov 27 2017
MATHEMATICA
t[n_] := Sum[StirlingS2[n, k] k!, {k, 0, n}]; c[n_] := Sum[Binomial[n, k] 2^k t[k], {k, 0, n}]; Table[Sum[(-1)^(n-k)c[k]^2, {k, 0, n}], {n, 0, 100}]
PROG
(Maxima) t(n):=sum(stirling2(n, k)*k!, k, 0, n);
c(n):=sum(binomial(n, k)*2^k*t(k), k, 0, n);
makelist(sum((-1)^(n-k)*c(k)^2, k, 0, n), n, 0, 40);
CROSSREFS
Sequence in context: A079929 A226415 A226346 * A332128 A247484 A136364
KEYWORD
nonn
AUTHOR
Emanuele Munarini, Oct 04 2012
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)