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!)
A281385 Triangular array T(n, k) = n^2 + n*k - k^2. 3

%I #15 Jan 24 2017 03:01:52

%S 0,1,1,4,5,4,9,11,11,9,16,19,20,19,16,25,29,31,31,29,25,36,41,44,45,

%T 44,41,36,49,55,59,61,61,59,55,49,64,71,76,79,80,79,76,71,64,81,89,95,

%U 99,101,101,99,95,89,81,100,109,116,121,124,125,124,121,116,109,100

%N Triangular array T(n, k) = n^2 + n*k - k^2.

%C Let {y0, y1, ...} a sequence satisfying y(m) = y(m-1) + y(m-2), then y(m)^2 - y(m-1)*y(m+1) = T(y0, y1)*(-1)^m. See the Fib. Quart. link.

%H Robert Israel, <a href="/A281385/b281385.txt">Table of n, a(n) for n = 0..10010</a> (rows 0 to 140, flattened)

%H F. D. Parker, <a href="http://www.fq.math.ca/Scanned/13-1/advanced13-1.pdf">The Very Existence: Problem H-248 and solution</a>, The Fibonacci Quarterly, Vol 15, Nr 1, February 1977.

%F From _Robert Israel_, Jan 23 2017: (Start)

%F G.f. as triangle: (1 + x + y - x*y - 4*x^2*y + x*y^2 - 4*x^2*y^2 + 5*x^3*y^2)*x/((1-x*y)^3*(1-x)^3).

%F G.f. as sequence: (1-4*x+x^2 + (3-4*x+x^2)*Sum_{k>=0} k*x^(k*(k+1)/2) + (-1+3*x-2*x^2)*Sum_{k>=0} x^(k*(k+1)/2))/(1-x)^3.

%F -(5*k-1)*T(n,k-1) + (5*k-2)*T(n,k) + (5*k-3)*T(n-1,k-1) - (5*k-4)*T(n-1,k) = 0 for 1 <= k <= n-1.

%F (End)

%e Triangle begins:

%e 0;

%e 1, 1;

%e 4, 5, 4;

%e 9, 11, 11, 9;

%e 16, 19, 20, 19, 16;

%e 25, 29, 31, 31, 29, 25;

%e 36, 41, 44, 45, 44, 41, 36;

%e ...

%e A000032 begins {2, 1 ...} and satisfies y(m)^2-y(m-1)*y(m+1) = 5*(-1)^m.

%p seq(seq(n^2+n*k-k^2, k=0..n),n=0..10); # _Robert Israel_, Jan 23 2017

%o (PARI) T(n, k) = n^2 + n*k - k^2;

%o lista(nn) = for (n=0, nn, for (k=0,n, print1(T(n, k), ", ")); print());

%Y Cf. A000032, A000045, A000290.

%K nonn,tabl

%O 0,4

%A _Michel Marcus_, Jan 23 2017

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 05:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)