OFFSET
0,2
LINKS
D. Berry, J. Broom, D. Dixon, A. Flaherty, Umbral Calculus and the Boustrophedon Transform, 2013
FORMULA
E.g.f.: exp(2*x)*I_1(2*x)*(sec(x)+tan(x))/x, where I_1(2*x) is the modified Bessel function of the first kind. - Sergei N. Gladkovskii, Nov 19 2014
a(n) ~ n! * exp(Pi) * BesselI(1, Pi) * 2^(n+3) / Pi^(n+2). - Vaclav Kotesovec, Jun 12 2015
EXAMPLE
G.f. = 1 + 3*x + 10*x^2 +37*x^3 + 149*x^4 + 648*x^5 + 3039*x^6 + 15401*x^7 + ...
MAPLE
PROG
(Python)
from itertools import accumulate, count, islice
def A231894_gen(): # generator of terms
blist, c = tuple(), 1
for i in count(1):
yield (blist := tuple(accumulate(reversed(blist), initial=c)))[-1]
c = c*(4*i+2)//(i+2)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Nov 18 2013
STATUS
approved