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!)
A297193 Irregular triangle read by rows: rows are partial alternating sums of rows of A297191. 2
1, 1, 4, 1, 1, 8, 17, 8, 1, 1, 12, 49, 80, 49, 12, 1, 1, 16, 97, 280, 401, 280, 97, 16, 1, 1, 20, 161, 672, 1569, 2084, 1569, 672, 161, 20, 1, 1, 24, 241, 1320, 4321, 8752, 11073, 8752, 4321, 1320, 241, 24, 1, 1, 28, 337, 2288, 9681, 26684, 48833, 59712, 48833, 26684, 9681 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
I. Sugai, Numerical solutions of Laplace's Equation, given Cauchy conditions, IBM Journal 3 (1959), 187-188. (Annotated scanned copy.) A signed version of the triangle appears on page 188, but the signs are not important.
EXAMPLE
Triangle begins:
1,
1,4,1,
1,8,17,8,1,
1,12,49,80,49,12,1,
1,16,97,280,401,280,97,16,1,
1,20,161,672,1569,2084,1569,672,161,20,1,
...
MAPLE
A297191x := proc(n, k)
A008288(2*n+1, k) ;
end proc:
A297193 := proc(n, k)
add((-1)^(i+1)*A297191x(n, i), i=0..k) ;
abs(%) ;
end proc:
seq(seq(A297193(n, k), k=0..2*n), n=0..10) ; # R. J. Mathar, Mar 04 2018
CROSSREFS
The middle and next to middle columns are A089165 and A089383.
Sequence in context: A316932 A317703 A055107 * A272867 A206438 A331148
KEYWORD
nonn,tabf
AUTHOR
N. J. A. Sloane, Jan 10 2018
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 6 08:28 EDT 2024. Contains 372290 sequences. (Running on oeis4.)