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 A174337 #37 Sep 08 2022 08:45:51 %S A174337 0,94,376,846,1504,2350,3384,4606,6016,7614,9400,11374,13536,15886, %T A174337 18424,21150,24064,27166,30456,33934,37600,41454,45496,49726,54144, %U A174337 58750,63544,68526,73696,79054,84600,90334,96256,102366,108664 %N A174337 94*n^2. %H A174337 Vincenzo Librandi, <a href="/A174337/b174337.txt">Table of n, a(n) for n = 0..10000</a> %H A174337 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (3,-3,1). %F A174337 G.f. 94*x*(1+x)/(1-x)^3 . - _R. J. Mathar_, Oct 01 2011 %F A174337 a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - _Vincenzo Librandi_, Aug 21 2014 %t A174337 Table[94 n^2, {n, 0, 40}] (* or *) CoefficientList[Series[94 x (1 + x)/(1 - x)^3, {x, 0, 40}], x] (* _Vincenzo Librandi_, Aug 21 2014 *) %t A174337 LinearRecurrence[{3,-3,1},{0,94,376},40] (* _Harvey P. Dale_, Aug 15 2016 *) %o A174337 (Magma) [94*n^2: n in [0..50]]; %o A174337 (Magma) I:=[0, 94, 376]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+Self(n-3): n in [1..40]]; // _Vincenzo Librandi_, Aug 21 2014 %o A174337 (PARI) a(n)=94*n^2 \\ _Charles R Greathouse IV_, Jun 17 2017 %Y A174337 Cf. A000290, A024352. %K A174337 nonn,easy,less %O A174337 0,2 %A A174337 _Vincenzo Librandi_, Mar 16 2010