cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A141387 Triangle read by rows: T(n,m) = n + 2*m*(n - m) (0 <= m <= n).

This page as a plain text file.
%I A141387 #73 Sep 10 2024 16:14:05
%S A141387 0,1,1,2,4,2,3,7,7,3,4,10,12,10,4,5,13,17,17,13,5,6,16,22,24,22,16,6,
%T A141387 7,19,27,31,31,27,19,7,8,22,32,38,40,38,32,22,8,9,25,37,45,49,49,45,
%U A141387 37,25,9,10,28,42,52,58,60,58,52,42,28,10
%N A141387 Triangle read by rows: T(n,m) = n + 2*m*(n - m) (0 <= m <= n).
%C A141387 Construct the infinite-dimensional matrix representation of angular momentum operators (J_1,J_2,J_3) in Jordan-Schwinger form (cf. Harter, Klee, Schwinger). The triangle terms T(n,k)=T(2j,j+m) satisfy:(1/4)T(2j,j+m) = <j,m|J_1^2|j,m> = <j,m|J_2^2|j,m>. Matrices for J_1^2 and J_2^2 are sparse. These diagonal equalities and the off-diagonal equalities of A268759 determine the only nonzero entries. Comments on A268759 provide a conjecture for the clear interpretation of these numbers in the context of binomial coefficients and other geometrical sequences. - _Bradley Klee_, Feb 20 2016
%C A141387 This sequence appears in the probability of the coin tossing "Gambler's Ruin". Call the probability of winning a coin toss = p, and the probability of losing the toss is 1-p = q, and call z = q/p. A gambler starts with $1, and tosses for $1 stakes till he has $0 (ruin) or has $n (wins). The average time T_win_lose(n) of a game (win OR lose) is a well-known function of z and n. The probability of the gambler winning P_win(n) is also known, and is equal to (1-z)/(1-z^n). T_win(n) defined as the average time it takes the gambler to win such a game is not so well known (I have not found it in the literature). I calculated T_win(n) and found it to be T_win(n) = P_win(n) * Sum_{m=0..n} T(n,m) * z^m. - _Steve Newman_, Oct 24 2016
%C A141387 As a square array A(n,m), gives the odd number's index of the product of n-th and m-th odd number. See formula. - _Rainer Rosenthal_, Sep 07 2022
%D A141387 R. N. Cahn, Semi-Simple Lie Algebras and Their Representations, Dover, NY, 2006, ISBN 0-486-44999-8, p. 139.
%H A141387 Michael De Vlieger, <a href="/A141387/b141387.txt">Table of n, a(n) for n = 0..10010</a> (rows 0 <= n <= 70, flattened)
%H A141387 Tomislav Došlić, <a href="http://ijmc.kashanu.ac.ir/article_105580.html">On the Laplacian Szeged Spectrum of Paths</a>, Iranian J. Math. Chem. (2020) Vol. 11, No. 1, 57-63.
%H A141387 W. Harter, <a href="http://www.uark.edu/ua/modphys/markup/PSDS_Info.html/">Principles of Symmetry, Dynamics, Spectroscopy</a>, Wiley, 1993, Ch. 5, page 345-346.
%H A141387 B. Klee, <a href="http://demonstrations.wolfram.com/QuantumAngularMomentumMatrices/">Quantum Angular Momentum Matrices</a>, Wolfram Demonstrations Project, 2016.
%H A141387 J. Schwinger, <a href="http://www.ifi.unicamp.br/~cabrera/teaching/paper_schwinger.pdf">On Angular Momentum</a>, Cambridge: Harvard University, Nuclear Development Associates, Inc., 1952.
%F A141387 T(n,m) = n + 2*m*(n-m).
%F A141387 Square array A(n,m) = 2*n*m + n + m, read by antidiagonals, satisfying 2*A(n,m) + 1 = (2*n+1)*(2*m+1) = A005408(n)*A005408(m) = A098353(n+1,m+1). - _Rainer Rosenthal_, Oct 01 2022
%e A141387 As a triangle:
%e A141387   { 0},
%e A141387   { 1,  1},
%e A141387   { 2,  4,  2},
%e A141387   { 3,  7,  7,  3},
%e A141387   { 4, 10, 12, 10,  4},
%e A141387   { 5, 13, 17, 17, 13,  5},
%e A141387   { 6, 16, 22, 24, 22, 16,  6},
%e A141387   { 7, 19, 27, 31, 31, 27, 19,  7},
%e A141387   { 8, 22, 32, 38, 40, 38, 32, 22,  8},
%e A141387   { 9, 25, 37, 45, 49, 49, 45, 37, 25,  9},
%e A141387   {10, 28, 42, 52, 58, 60, 58, 52, 42, 28, 10}
%e A141387 From _Peter Munn_, Sep 28 2022: (Start)
%e A141387 Square array A(n,m) starts:
%e A141387   0,  1,  2,  3,  4,  5,  6,  7, ...
%e A141387   1,  4,  7, 10, 13, 16, 19, 22, ...
%e A141387   2,  7, 12, 17, 22, 27, 32, 37, ...
%e A141387   3, 10, 17, 24, 31, 38, 45, 52, ...
%e A141387   4, 13, 22, 31, 40, 49, 58, 67, ...
%e A141387   5, 16, 27, 38, 49, 60, 71, 82, ...
%e A141387   6, 19, 32, 45, 58, 71, 84, 97, ...
%e A141387 ...
%e A141387 (End)
%t A141387 T[n_, m_] = n + 2* m *(-m + n);
%t A141387 a = Table[Table[T[n, m], {m, 0, n}], {n, 0, 10}];
%t A141387 Flatten[a]
%t A141387 (* second program: *)
%t A141387 Flatten[ Table[2 j + 2 j^2 - 2 m^2, {j, 0, 10, 1/2}, {m, -j, j}]] (* _Bradley Klee_, Feb 20 2016 *)
%o A141387 (PARI) {T(n, m) = if( m<0 || n<m, 0, n + 2*m * (n-m))}; \\ _Michael Somos_, May 28 2017
%Y A141387 [0, 0] together with the row sums give A007290.
%Y A141387 Cf. A003991, A268759, A094053, A098353, A114327.
%K A141387 nonn,tabl
%O A141387 0,4
%A A141387 _Roger L. Bagula_, Aug 03 2008
%E A141387 Edited by _N. J. A. Sloane_, Feb 21 2016