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!)
A061896 Triangle of coefficients of Lucas polynomials. 6

%I #7 Oct 16 2017 02:02:50

%S 2,1,0,1,2,0,1,3,0,0,1,4,2,0,0,1,5,5,0,0,0,1,6,9,2,0,0,0,1,7,14,7,0,0,

%T 0,0,1,8,20,16,2,0,0,0,0,1,9,27,30,9,0,0,0,0,0,1,10,35,50,25,2,0,0,0,

%U 0,0,1,11,44,77,55,11,0,0,0,0,0,0,1,12,54,112,105,36,2,0,0,0,0,0,0,1,13

%N Triangle of coefficients of Lucas polynomials.

%H G. C. Greubel, <a href="/A061896/b061896.txt">Table of n, a(n) for the first 50 rows, flattened</a>

%F a(n, k) = C(n-k, k)*n/(n-k).

%F a(n, k) = C(n-k, k) + C(n-k-1, k-1).

%F a(n, k) = a(n-1, k) + a(n-2, k-1) with a(n, 0)=1 if n>0 and a(0, 0)=2.

%e Triangle begins:

%e 2,

%e 1, 0.

%e 1, 2, 0.

%e 1, 3, 0, 0.

%e 1, 4, 2, 0, 0.

%e 1, 5, 5, 0, 0, 0.

%e 1, 6, 9, 2, 0, 0, 0.

%t a[0, 0] := 2; a[n_, 0] := 1; a[n_, n_] := 0; a[n_, k_] := Binomial[n - k, k]*n/(n - k); Table[a[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* _G. C. Greubel_, Oct 15 2017 *)

%Y Alternative version of A034807. With alternating signs, these are the coefficients of the recurrences in A061897.

%K nonn,tabl

%O 0,1

%A _Henry Bottomley_, May 14 2001

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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)