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.

A174337 94*n^2.

Original entry on oeis.org

0, 94, 376, 846, 1504, 2350, 3384, 4606, 6016, 7614, 9400, 11374, 13536, 15886, 18424, 21150, 24064, 27166, 30456, 33934, 37600, 41454, 45496, 49726, 54144, 58750, 63544, 68526, 73696, 79054, 84600, 90334, 96256, 102366, 108664
Offset: 0

Views

Author

Vincenzo Librandi, Mar 16 2010

Keywords

Crossrefs

Programs

  • Magma
    [94*n^2: n in [0..50]];
    
  • 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
    
  • Mathematica
    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 *)
    LinearRecurrence[{3,-3,1},{0,94,376},40] (* Harvey P. Dale, Aug 15 2016 *)
  • PARI
    a(n)=94*n^2 \\ Charles R Greathouse IV, Jun 17 2017

Formula

G.f. 94*x*(1+x)/(1-x)^3 . - R. J. Mathar, Oct 01 2011
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Vincenzo Librandi, Aug 21 2014