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.

A060641 Surround numbers of a length 2n zig-zag.

Original entry on oeis.org

161, 257, 373, 509, 665, 841, 1037, 1253, 1489, 1745, 2021, 2317, 2633, 2969, 3325, 3701, 4097, 4513, 4949, 5405, 5881, 6377, 6893, 7429, 7985, 8561, 9157, 9773, 10409, 11065, 11741, 12437, 13153, 13889, 14645, 15421, 16217, 17033
Offset: 2

Views

Author

Jason Earls, Apr 16 2001

Keywords

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{3,-3,1},{161,257,373},40] (* or *) Table[10x^2+66x+85,{x,40}] (* Harvey P. Dale, May 26 2013 *)
  • PARI
    a(n)={10*n^2 + 46*n + 29} \\ Harry J. Smith, Jul 09 2009

Formula

a(n) = 10n^2 + 46n + 29 with n > 1.
From Colin Barker, Apr 22 2012: (Start)
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
G.f.: x^2*(161 - 226*x + 85*x^2)/(1-x)^3. (End)