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!)
A174626 Antidiagonal of sequence: q=5; t(n,m) = Sum((2*cos(i*Pi/q))^m*cos[(m - 2*n)*i*Pi/q), {i, 0, q - 1}]/q. 0

%I #4 Dec 10 2016 17:30:36

%S 1,0,1,0,1,1,1,0,2,2,0,1,1,3,5,0,1,1,3,5,11,1,0,2,2,6,10,22,0,1,1,3,5,

%T 11,21,43,0,1,1,3,5,11,21,43,85,1,0,2,2,6,10,22,42,86,170

%N Antidiagonal of sequence: q=5; t(n,m) = Sum((2*cos(i*Pi/q))^m*cos[(m - 2*n)*i*Pi/q), {i, 0, q - 1}]/q.

%C Row sums are {1, 1, 2, 3, 5, 10, 20, 45, 100, 215, ...}.

%D J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, pp. 41.

%F q=5; t(n,m) = Sum[(2*cos(i*Pi/q))^m*cos((m - 2*n)*i*Pi/q), {i, 0, q - 1}]/q;

%F out_n,m = Antidiagonal(t(n,m)).

%e {1},

%e {0, 1},

%e {0, 1, 1},

%e {0, 0, 2, 1},

%e {0, 0, 1, 3, 1},

%e {1, 0, 0, 3, 4, 2},

%e {0, 1, 0, 1, 6, 5, 7},

%e {0, 1, 1, 0, 4, 10, 7, 22},

%e {0, 0, 2, 1, 1, 10, 15, 14, 57},

%e {0, 0, 1, 3, 1, 5, 20, 22, 36, 127}

%t t[n_, m_, q_] = Sum[(2*Cos[i*Pi/q])^m*Cos[(m - 2*n)*i*Pi/q], {i, 0, q - 1}]/q;

%t a = Table[Table[If[ Rationalize[ N[t[n, m, q]]] < 10^(-10), 0, Rationalize[N[t[n, m, q]]]], {m, 0, 10}, {n, 0, 10}], {q, 3, 10, 2}];

%t Table[Flatten[Table[Table[a[[l]][[m, n - m + 1]], {m, 1, n}], {n, 1, 10}]], {l, 1, Length[a]}]

%K nonn,tabl,uned

%O 0,9

%A _Roger L. Bagula_, Mar 24 2010

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 19 17:38 EDT 2024. Contains 371797 sequences. (Running on oeis4.)