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.

A111711 Leading column of triangle mentioned in A111710.

This page as a plain text file.
%I A111711 #20 Jun 21 2023 15:44:08
%S A111711 1,2,5,8,14,19,28,35,47,56,71,82,100,113,134,149,173,190,217,236,266,
%T A111711 287,320,343,379,404,443,470,512,541,586,617,665,698,749,784,838,875,
%U A111711 932,971,1031,1072,1135,1178,1244,1289,1358,1405,1477,1526,1601,1652
%N A111711 Leading column of triangle mentioned in A111710.
%C A111711 Also partial sums of A257143. - _Reinhard Zumkeller_, Apr 17 2015
%H A111711 Reinhard Zumkeller, <a href="/A111711/b111711.txt">Table of n, a(n) for n = 1..10000</a>
%H A111711 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (1,2,-2,-1,1).
%F A111711 a(1)=1, a(2n) = a(2n-1)+2n-1, a(2n+1)=a(2n)+3n; a(n) = A111710(n-1)+1. - _Franklin T. Adams-Watters_, May 01 2006
%F A111711 From _Chai Wah Wu_, Mar 05 2021: (Start)
%F A111711 a(n) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5) for n > 5.
%F A111711 G.f.: x*(-x^4 - x^3 - x^2 - x - 1)/((x - 1)^3*(x + 1)^2). (End)
%F A111711 a(n) = (10*n*(n-1) + (-1)^n*(1-2*n)+15)/16.  - _Eric Simon Jacob_, Jun 11 2022
%t A111711 LinearRecurrence[{1,2,-2,-1,1},{1,2,5,8,14},60] (* _Harvey P. Dale_, Jun 21 2023 *)
%o A111711 (Haskell)
%o A111711 a111711 n = a111711_list !! (n-1)
%o A111711 a111711_list = 1 : zipWith (+) a111711_list a080512_list
%o A111711 -- _Reinhard Zumkeller_, Apr 17 2015
%Y A111711 Cf. A111710, A111712, A080512, A257143.
%K A111711 easy,nonn
%O A111711 1,2
%A A111711 _Amarnath Murthy_, Aug 24 2005
%E A111711 More terms from _Franklin T. Adams-Watters_, May 01 2006