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!)
A137374 Triangular array of the coefficients of the Jacobsthal-Lucas polynomials ordered by descending powers, read by rows. 0
2, 1, 4, 1, 6, 1, 8, 8, 1, 20, 10, 1, 16, 36, 12, 1, 56, 56, 14, 1, 32, 128, 80, 16, 1, 144, 240, 108, 18, 1, 64, 400, 400, 140, 20, 1, 352, 880, 616, 176, 22, 1, 128, 1152, 1680, 896, 216, 24, 1, 832, 2912, 2912, 1248, 260, 26, 1, 256, 3136, 6272, 4704, 1680, 308, 28, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The even rows which start with 4, 8, 16 ... appear to be the absolute values of the Riordan array A128414. - Georg Fischer, Feb 25 2020
LINKS
Eric Weisstein's World of Mathematics, Jacobsthal-Lucas Polynomial.
FORMULA
Let p(n, x) = 2*x*p(n-2, x) + p(n-1, x) with p(0, x) = 2 and p(1, x) = 1. The coefficients of the polynomial p(n, x), listed in reverse order, give row n. - Jinyuan Wang, Feb 25 2020
EXAMPLE
The triangle starts:
2;
1;
4, 1;
6, 1;
8, 8, 1;
20, 10, 1;
16, 36, 12, 1;
56, 56, 14, 1;
32, 128, 80, 16, 1;
144, 240, 108, 18, 1;
64, 400, 400, 140, 20, 1;
352, 880, 616, 176, 22, 1;
...
MAPLE
b:= proc(n) option remember;
`if`(n<2, 2-n, b(n-1)+2*expand(x*b(n-2)))
end:
T:= n-> (p-> (d-> seq(coeff(p, x, d-i), i=0..d))(degree(p)))(b(n)):
seq(T(n), n=0..20); # Alois P. Heinz, Feb 25 2020
MATHEMATICA
f[0] = 2; f[1] = 1; f[n_] := 2 x f[n - 2] + f[n - 1];
Table[Reverse[CoefficientList[f[n], x]], {n, 0, 14}] // Flatten (* Jinyuan Wang, Feb 25 2020 *)
CROSSREFS
Row sums give A014551.
Cf. A034807.
Sequence in context: A339420 A317494 A317505 * A131516 A088140 A130758
KEYWORD
nonn,tabf
AUTHOR
Roger L. Bagula, Apr 09 2008
EXTENSIONS
Offset set to 0 by Peter Luschny, Feb 25 2020
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 April 24 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)