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!)
A308681 E.g.f.: (sec(x) - tan(x)) / sqrt(1 - 2*x). 0
1, 0, 2, 7, 60, 519, 5890, 76637, 1158808, 19770383, 377036646, 7939301349, 183033429524, 4584731740471, 123994410402122, 3601004174824573, 111771076844177328, 3692510526181175583, 129364120799128910158, 4790645026641043053269, 186981399898552187792620 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Inverse boustrophedon transform of A001147.
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * A001147(k) * A000111(n-k).
a(n) ~ (1 - sin(1/2)) * 2^(n + 1/2) * n^n / (cos(1/2) * exp(n)). - Vaclav Kotesovec, Aug 23 2021
MATHEMATICA
nmax = 20; CoefficientList[Series[(Sec[x] - Tan[x])/Sqrt[1 - 2 x], {x, 0, nmax}], x] Range[0, nmax]!
t[n_, 0] := (2 n - 1)!!; 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, 20}]
PROG
(Python)
from itertools import count, islice, accumulate
from operator import sub
def A308681_gen(): # generator of terms
blist, m = tuple(), 1
for i in count(1):
yield (blist := tuple(accumulate(reversed(blist), func=sub, initial=m)))[-1]
m *= (2*i-1)
A308681_list = list(islice(A308681_gen(), 30)) # Chai Wah Wu, Jun 11 2022
CROSSREFS
Sequence in context: A215209 A274600 A352625 * A366328 A091687 A000892
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 15 2021
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 23 01:19 EDT 2024. Contains 371906 sequences. (Running on oeis4.)