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!)
Search: seq:1,4,19,103,634,4393,33893,288158,2674849,26888251
Displaying 1-1 of 1 result found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A367808 a(n) = Sum_{k=0..n} A011971(n, k) * 2^(n - k). +30
2
1, 4, 19, 103, 634, 4393, 33893, 288158, 2674849, 26888251, 290614732, 3356438587, 41203019361, 535141595208, 7324289215167, 105271669493307, 1584113665608394, 24890073684310405, 407378999173905545, 6930779764599424550, 122334506551009552893, 2236412875771806004767 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The Peirce/Aitken polynomials evaluated at 1/2 and the result normalized with 2^n.
LINKS
PROG
(Python)
from functools import cache
@cache
def b(n: int) -> list[int]:
if n == 0: return [1]
row = [b(n - 1)[n - 1]] + b(n - 1)
for k in range(1, n + 1): row[k] += row[k - 1]
return row
def a(n): return sum(b(n)[k] * 2 ** (n - k) for k in range(n + 1))
print([a(n) for n in range(22)])
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Dec 01 2023
STATUS
approved
page 1

Search completed in 0.001 seconds

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 June 29 14:02 EDT 2024. Contains 373851 sequences. (Running on oeis4.)