cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A166354 Row sums of exponential Riordan array [1+x*tan(x/2),x], A166353.

Original entry on oeis.org

1, 1, 2, 4, 8, 16, 34, 78, 200, 568, 1806, 6282, 24052, 99100, 443178, 2107966, 10775664, 58092112, 334087750, 2012990930, 12863046636, 85662585604, 602124105122, 4391793687974, 33676375206568, 266989039507576
Offset: 0

Views

Author

Paul Barry, Oct 12 2009

Keywords

Comments

Binomial transform of aerated Genocchi number variant with e.g.f. 1+x*tan(x/2).

Crossrefs

Cf. A110501.

Programs

  • Mathematica
    CoefficientList[Series[E^x*(1+x*Tan[x/2]), {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Oct 02 2013 *)

Formula

E.g.f.: exp(x)*(1+x*tan(x/2)).
a(n)=sum{k=0..n, C(n,k)*G(k/2)(1+(-1)^k)/2} where
G(n)=0^n+2(-1)^n*(1-4^n)*sum{k=0..2n, sum{j=0..k, (-1)^j*C(k,j)*j^(2n)/(k+1)}}.
a(n) ~ n! * 2*(exp(Pi)+(-1)^n*exp(-Pi))/Pi^n. - Vaclav Kotesovec, Oct 02 2013

A166355 Diagonal sums of exponential Riordan array [1+x*tan(x/2),x], A166353.

Original entry on oeis.org

1, 2, 5, 15, 64, 443, 4887, 78996, 1745995, 50333929, 1829758158, 81753825477, 4399497764477, 280491321580150, 20898005984605281, 1798558057748753171, 177034863818072607020, 19758697171102806823327
Offset: 0

Views

Author

Paul Barry, Oct 12 2009

Keywords

Comments

Aerated sequence gives diagonal sums of A166353.

Crossrefs

Programs

  • Mathematica
    (* The function RiordanArray is defined in A256893. *)
    nmax = 17; R = RiordanArray[1 + # Tan[#/2]&, #&, 2 nmax + 1, True];
    a[n_] := Sum[R[[i, 2 n - i + 2]], {i, 2 n + 1, n + 1, -1}];
    Table[a[n], {n, 0, nmax}] (* Jean-François Alcover, Jul 20 2019 *)

Formula

a(n)=sum{k=0..n, C(n+k,2k)*G(k)} where G(n)=0^n+2(-1)^n*(1-4^n)*sum{k=0..2n, sum{j=0..k, (-1)^j*C(k,j)*j^(2n)/(k+1)}}.
Showing 1-2 of 2 results.