OFFSET
0,1
COMMENTS
LINKS
D. Berry, J. Broom, D. Dixon, and A. Flaherty, Umbral Calculus and the Boustrophedon Transform, 2013.
FORMULA
E.g.f.: 1 + (sec(x) + tan(x) + 1)*(sec(x) + tan(x)). - Sergei N. Gladkovskii, Jun 11 2015
PROG
(Python)
from itertools import accumulate, islice
def A231895_gen(): # generator of terms
yield 3
blist = (0, 1)
while True:
yield blist[-1]+2*(blist := tuple(accumulate(reversed(blist), initial=0)))[-1]
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Nov 18 2013
STATUS
approved