The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A367775 a(n) = Sum_{k=0..n} (-1)^(n - k) * A011971(n, k). 0
1, 1, 4, 7, 37, 94, 587, 1925, 13606, 54217, 424381, 1979704, 16918869, 90086877, 831972372, 4964577987, 49154794969, 324183365662, 3419501188439, 24655458609377, 275624716500750, 2153735319395661, 25406228456463665, 213606545948092304, 2649077873736448473 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Alternating row sums of the Peirce/Aitken/Bell triangle A011971.
LINKS
PROG
(Python) # Using the function b from A367808.
def a(n): return sum(b(n)[k] * (-1)**(n - k) for k in range(n + 1))
print([a(n) for n in range(25)])
CROSSREFS
Sequence in context: A212500 A302198 A279830 * A245305 A152450 A059213
KEYWORD
nonn
AUTHOR
Peter Luschny, Dec 02 2023
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 May 16 10:52 EDT 2024. Contains 372552 sequences. (Running on oeis4.)