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!)
A186492 Recursive triangle for calculating A186491. 4

%I #14 Nov 13 2019 06:58:39

%S 1,0,1,2,0,3,0,14,0,15,28,0,132,0,105,0,5556,0,1500,0,945,1112,0,

%T 10668,0,1995,0,10395,0,43784,0,212940,0,304290,0,135135,87568,0,

%U 1408992,0,4533480,0,5239080,0,2027025

%N Recursive triangle for calculating A186491.

%C The table entries are defined by a recurrence relation (see below).

%C This triangle can be used to calculate the entries of A186491: the nonzero entries of the first column of the triangle give A186491.

%C PRODUCTION MATRIX

%C The production matrix P for this triangle is the bidiagonal matrix with the sequence [2,4,6,...] on the main subdiagonal, the sequence [1,3,5,...] on the main superdiagonal and 0's elsewhere: the first row of P^n is the n-th row of this triangle.

%H C. V. Sukumar and A. Hodges, <a href="https://doi.org/10.1098/rspa.2007.0003">Quantum algebras and parity-dependent spectra</a>, Proc. R. Soc. A (2007) 463, 2415-2427.

%F Recurrence relation

%F (1)... T(n,k) = (2*k-1)*T(n-1,k-1)+(2*k+2)*T(n-1,k+1).

%F GENERATING FUNCTION

%F E.g.f. (Compare with the e.g.f. of A104035):

%F (2)... 1/sqrt(cos(2*t)-u*sin(2*t)) = sum {n = 0..inf } R(n,u)*t^n/n! = 1 + u*t + (2+3*u^2)*t^2/2! + (14*u+15*u^3)*t^3/3!+....

%F ROW POLYNOMIALS

%F The row polynomials R(n,u) begin

%F ... R(1,u) = u

%F ... R(2,u) = 2+3*u^2

%F ... R(3,u) = 14*u+15*u^3

%F ... R(4,u) = 28+132*u^2+105u^4.

%F They satisfy the recurrence relation

%F (3)... R(n+1,u) = 2*(1+u^2)*d/du(R(n,u))+u*R(n,u) with starting value R(0,u) = 1.

%F Compare with Formula (1) of A104035 for the polynomials Q_n(u).

%F The polynomials R(n,u) are related to the shifted row polynomials A(n,u) of A142459 via

%F (4)... R(n,u) = ((u+I)/2)^n*A(n+1,(u-I)/(u+I))

%F with the inverse identity

%F (5)... A(n+1,u) = (-I)^n*(1-u)^n*R(n,I*(1+u)/(1-u)),

%F where {A(n,u)}n>=1 begins [1,1+u,1+10*u+u^2,1+59*u+59*u^2+u^3,...] and I = sqrt(-1).

%e Table begins

%e n\k|.....0.....1......2.....3......4.....5......6

%e =================================================

%e 0..|.....1

%e 1..|.....0.....1

%e 2..|.....2.....0......3

%e 3..|.....0....14......0....15

%e 4..|....28.....0....132.....0....105

%e 5..|.....0...556......0..1500......0...945

%e 6..|..1112.....0..10668.....0..19950.....0..10395

%e ..

%e Examples of recurrence relation

%e T(4,2) = 3*T(3,1) + 6*T(3,3) = 3*14 + 6*15 = 132;

%e T(6,4) = 7*T(5,3) + 10*T(5,5) = 7*1500 + 10*945 = 19950.

%t R[0][_] = 1; R[1][u_] = u;

%t R[n_][u_] := R[n][u] = 2(1+u^2) R[n-1]'[u] + u R[n-1][u];

%t Table[CoefficientList[R[n][u], u], {n, 0, 8}] // Flatten (* _Jean-François Alcover_, Nov 13 2019 *)

%Y A104035, A142459, A144015 (row sums), A186491.

%K nonn,easy,tabl

%O 0,4

%A _Peter Bala_, Feb 22 2011

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 12:46 EDT 2024. Contains 371942 sequences. (Running on oeis4.)