OFFSET
0,3
COMMENTS
The Peirce/Aitken polynomials evaluated at -1/2 and the result normalized with (-2)^n.
PROG
(Python) # Using the function b from A367808.
def a(n): return sum(b(n)[k] * (-2) ** (n - k) for k in range(n + 1))
print([a(n) for n in range(23)])
CROSSREFS
KEYWORD
sign
AUTHOR
Peter Luschny, Dec 01 2023
STATUS
approved