login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A360229
Row sums of triangle A360173.
2
0, 1, 3, 6, 16, 36, 73, 156, 324, 677, 1405, 2864, 5906, 12058, 24548, 49928, 101434, 206173, 417141, 844256, 1707622, 3452998, 6970196, 14058528, 28368774, 57197983, 115239846, 232020596, 467296470, 940684267, 1892396396, 3805806218, 7654402454, 15391563411
OFFSET
0,3
LINKS
MAPLE
b:= proc(n) option remember; `if`(n=0, 1, (p->
add((t-> `if`(i<n, 0, t*x^(i-n))+t*x^(i+n))(
coeff(p, x, i)), i=0..degree(p)))(b(n-1)))
end:
a:= proc(n) option remember; (p->
add(i*coeff(p, x, i), i=0..degree(p)))(b(n))
end:
seq(a(n), n=0..35); # Alois P. Heinz, Jan 30 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
John Tyler Rascoe, Jan 30 2023
STATUS
approved