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!)
A076110 Triangle (read by rows) in which the n-th row contains first n terms of an arithmetic progression with first term 1 and common difference (n-1). 5

%I #24 Mar 30 2023 12:33:11

%S 1,1,2,1,3,5,1,4,7,10,1,5,9,13,17,1,6,11,16,21,26,1,7,13,19,25,31,37,

%T 1,8,15,22,29,36,43,50,1,9,17,25,33,41,49,57,65,1,10,19,28,37,46,55,

%U 64,73,82,1,11,21,31,41,51,61,71,81,91,101,1,12,23,34,45,56,67,78,89,100,111,122

%N Triangle (read by rows) in which the n-th row contains first n terms of an arithmetic progression with first term 1 and common difference (n-1).

%C Leading diagonal contains n^2 + 1 (A002522).

%C Sum of the n-th row is (n+1)(n^2+2)/2 (A064808).

%H Robert Israel, <a href="/A076110/b076110.txt">Table of n, a(n) for n = 1..10011</a>(rows 1 to 141, flattened)

%F A076110(n) = L(n) with L=seq(seq(n*k+1, k = 0..n), n = 0..+inf). - _Yalcin Aktar_, Jul 14 2009

%F From _Robert Israel_, Dec 04 2018: (Start)

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

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

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

%F (End)

%e 1;

%e 1, 2;

%e 1, 3, 5;

%e 1, 4, 7, 10;

%e 1, 5, 9, 13, 17;

%e 1, 6, 11, 16, 21, 26;

%e 1, 7, 13, 19, 25, 31, 37; ...

%p T:= (n,k) -> 1+(n-1)*(k-1):for n from 1 to 10 do seq(T(n,k),k=1..n) od; # _Robert Israel_, Dec 04 2018

%t T[n_, k_] := 1 + (n-1) * (k-1); Table[T[n, k], {n,1,10}, {k,1,n}] // Flatten (* _Amiram Eldar_, Dec 04 2018 *)

%o (GAP) Flat(List([1..12],n->List([1..n],k->1+(n-1)*(k-1)))); # _Muniru A Asiru_, Dec 05 2018

%o (Magma) /* As triangle */ [[1+(n-1)*(k-1): k in [1..n]]: n in [1.. 12]]; // _Vincenzo Librandi_, Dec 05 2018

%Y Cf. A002522, A064808, A076111 (row products), A079904.

%K nonn,tabl,easy

%O 1,3

%A _Amarnath Murthy_, Oct 09 2002

%E More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Apr 20 2003

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