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!)
A101473 Boustrophedon transform of the Jacobsthal numbers. 2
0, 1, 3, 9, 31, 111, 453, 2059, 10571, 60651, 386253, 2704659, 20661411, 170990691, 1523975053, 14552848059, 148234015051, 1604267622731, 18383552327853, 222363321668259, 2831217743661491, 37850593064646771, 530121590756400653 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Binomial transform of A101474.
LINKS
FORMULA
E.g.f.: (sec(x) + tan(x))*(exp(2*x) - exp(-x))/3.
a(n) = (A000752(n) - A062162(n))/3.
a(n) ~ n! * 2^(n+2) * (exp(Pi) - exp(-Pi/2)) / (3 * Pi^(n+1)). - Vaclav Kotesovec, Jun 12 2015
PROG
(Python)
from itertools import accumulate, islice
def A101473_gen(): # generator of terms
blist, a, b = tuple(), 0, 1
while True:
yield (blist := tuple(accumulate(reversed(blist), initial=a)))[-1]
a, b = b, 2*a+b
A101473_list = list(islice(A101473_gen(), 30)) # Chai Wah Wu, Jun 11 2022
CROSSREFS
Sequence in context: A049174 A209335 A049159 * A056334 A063032 A056335
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jan 21 2005
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 24 10:00 EDT 2024. Contains 371935 sequences. (Running on oeis4.)