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!)
A109900 The (n,r)-th term of the following triangle is T(n)-T(r) for r = 0 to n. The n-th row contains n+1 terms. T(n) = the n-th triangular number = n(n+1)/2. Sequence contains the sum of terms at a 45-degree angle. 3

%I #44 Sep 17 2022 03:44:57

%S 0,1,3,8,15,27,42,64,90,125,165,216,273,343,420,512,612,729,855,1000,

%T 1155,1331,1518,1728,1950,2197,2457,2744,3045,3375,3720,4096,4488,

%U 4913,5355,5832,6327,6859,7410,8000,8610,9261,9933,10648,11385,12167,12972

%N The (n,r)-th term of the following triangle is T(n)-T(r) for r = 0 to n. The n-th row contains n+1 terms. T(n) = the n-th triangular number = n(n+1)/2. Sequence contains the sum of terms at a 45-degree angle.

%C Initial terms match those of A047866 with a difference of +1 or -1 in some cases. A047866: 0, 1, 3, 8, 15, 27, 42, 63, 90, 124, 165, 215, ...

%H <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (2,1,-4,1,2,-1).

%F a(2n+1) = (n+1)^3; a(2n) = (2n+1)*T(n) = (2n+1)*(n+1)*n/2, where T=A000217. - _R. J. Mathar_, Feb 11 2008

%F a(n) = A034828(n+1). - _R. J. Mathar_, Aug 18 2008

%F G.f.: x*(1+x+x^2)/(1-2*x-x^2+4*x^3-x^4-2*x^5+x^6). - _Colin Barker_, Jan 04 2012

%F a(n) = (2*n^3+6*n^2+5*n+1-(n+1)*(-1)^n)/16. - _Luce ETIENNE_, May 12 2015

%F a(n) = Sum_{k=0..n} A001318(k). - _Jacob Szlachetka_, Dec 20 2021

%F Sum_{n>=1} 1/a(n) = 6 - 8*log(2) + zeta(3). - _Amiram Eldar_, Sep 17 2022

%e The (n,r)-th term of the following triangle is T(n)-T(r) for r = 0 to n. The n-th row contains n+1 terms.

%e 0

%e 1 0

%e 3 2 0

%e 6 5 3 0

%e 10 9 7 4 0

%e 15 14 12 9 5 0

%e 21 20 18 15 11 6 0

%e 28 27 ...

%e 36 ...

%e Sequence contains the sum of terms at a 45-degree angle.

%e a(5) = 15 + 9 + 3 = 27.

%p A109900 := proc(n) if n mod 2 = 1 then ( (n+1)/2)^3 ; else (n+1)*(n/2+1)*(n/2)/2 ; fi ; end: seq(A109900(n),n=0..80) ; # _R. J. Mathar_, Feb 11 2008

%t LinearRecurrence[{2, 1, -4, 1, 2, -1}, {0, 1, 3, 8, 15, 27}, 50] (* _Amiram Eldar_, Sep 17 2022 *)

%Y Cf. A000217, A001318, A034828, A047866.

%K nonn,easy

%O 0,3

%A _Amarnath Murthy_, Jul 13 2005

%E Corrected and extended by _R. J. Mathar_, Feb 11 2008

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 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)