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.
%I A187710 #23 Sep 08 2022 08:45:56 %S A187710 10,12,16,22,30,40,52,66,82,100,120,142,166,192,220,250,282,316,352, %T A187710 390,430,472,516,562,610,660,712,766,822,880,940,1002,1066,1132,1200, %U A187710 1270,1342,1416,1492,1570,1650,1732,1816,1902,1990,2080,2172,2266,2362,2460 %N A187710 a(n) = n^2 + n + 10. %H A187710 G. C. Greubel, <a href="/A187710/b187710.txt">Table of n, a(n) for n = 0..5000</a> %H A187710 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (3,-3,1). %F A187710 a(0)=10, a(1)=12, a(2)=16; for n>2, a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - _Harvey P. Dale_, Jan 18 2014 %F A187710 From _Bruno Berselli_, Oct 20 2016: (Start) %F A187710 G.f.: 2*(5 - 9*x + 5*x^2)/(1 - x)^3. %F A187710 a(n) = 2*A167499(n-1) for n>0. %F A187710 a(n) = Sum_{i=n-5..n+5} i*(i+1)/11. (End) %F A187710 E.g.f.: (x^2 + 2*x + 10)*exp(x). - _G. C. Greubel_, Nov 06 2018 %F A187710 Sum_{n>=0} 1/a(n) = Pi*tanh(Pi*sqrt(39)/2)/sqrt(39). - _Amiram Eldar_, Jan 17 2021 %t A187710 f[n_] := n^2 + n + 10; f[Range[0, 100]] %t A187710 LinearRecurrence[{3, -3, 1}, {10, 12, 16}, 50] (* _Harvey P. Dale_, Jan 18 2014 *) %o A187710 (PARI) a(n)=n^2+n+10 \\ _Charles R Greathouse IV_, Jun 17 2017 %o A187710 (Magma) [n^2 + n + 10: n in [0..50]]; // _G. C. Greubel_, Nov 06 2018 %Y A187710 Cf. A002061, A002378, A167499. %K A187710 nonn,easy %O A187710 0,1 %A A187710 _Vladimir Joseph Stephan Orlovsky_, Mar 12 2011 %E A187710 Offset changed to 0 from _Bruno Berselli_, Oct 20 2016