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!)
A337446 E.g.f.: exp(2*x) * (BesselI(0,2*x) - BesselI(1,2*x)) / (sec(x) + tan(x)). 0
1, 0, 1, 0, 3, -9, 5, -235, 35, -5939, 10773, -199746, 961521, -10506833, 82135911, -836458064, 8282576627, -90730736923, 1034615625645, -12538466040640, 159529541334325, -2133316798885373, 29875632576041747, -437461119834677379, 6683837093985315589 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Inverse boustrophedon transform of Catalan numbers.
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * A000108(k) * A000111(n-k).
MATHEMATICA
nmax = 24; CoefficientList[Series[Exp[2 x] (BesselI[0, 2 x] - BesselI[1, 2 x])/(Sec[x] + Tan[x]), {x, 0, nmax}], x] Range[0, nmax]!
t[n_, 0] := CatalanNumber[n]; t[n_, k_] := t[n, k] = t[n, k - 1] - t[n - 1, n - k]; a[n_] := t[n, n]; Table[a[n], {n, 0, 24}]
PROG
(Python)
from itertools import islice, count, accumulate
from operator import sub
def A337446_gen(): # generator of terms
blist, c = tuple(), 1
for i in count(0):
yield (blist := tuple(accumulate(reversed(blist), func=sub, initial=c)))[-1]
c = c*(4*i+2)//(i+2)
A337446_list = list(islice(A337446_gen(), 30)) # Chai Wah Wu, Jun 11 2022
CROSSREFS
Sequence in context: A193993 A107051 A351913 * A020834 A198731 A153019
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Aug 27 2020
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 July 14 19:09 EDT 2024. Contains 374323 sequences. (Running on oeis4.)