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.

A198017 a(n) = n*(7*n + 11)/2 + 1.

Original entry on oeis.org

1, 10, 26, 49, 79, 116, 160, 211, 269, 334, 406, 485, 571, 664, 764, 871, 985, 1106, 1234, 1369, 1511, 1660, 1816, 1979, 2149, 2326, 2510, 2701, 2899, 3104, 3316, 3535, 3761, 3994, 4234, 4481, 4735, 4996, 5264, 5539, 5821, 6110, 6406, 6709, 7019, 7336, 7660, 7991
Offset: 0

Views

Author

Bruno Berselli, Oct 21 2011 - based on remarks and sequences by Omar E. Pol

Keywords

Comments

First bisection of A193053 (see also the numerical spiral illustrated in the Links section).
The inverse binomial transform yields 1, 9, 7, 0, 0 (0 continued).

Crossrefs

Cf. A195020 (vertices of the numerical spiral in link).
Cf. A017005 (first differences).

Programs

  • Magma
    [n*(7*n+11)/2+1: n in [0..47]];
  • Mathematica
    Table[(n(7n+11))/2+1,{n,0,60}] (* or *) LinearRecurrence[{3,-3,1},{1,10,26},60] (* Harvey P. Dale, Mar 03 2013 *)
  • PARI
    for(n=0, 47, print1(n*(7*n+11)/2+1", "));
    

Formula

G.f.: (1 + 7*x - x^2)/(1-x)^3.
a(n) = A195020(2*n) + 2*n + 1.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) = 2*a(n-1) - a(n-2) + 7.
From Elmo R. Oliveira, Dec 24 2024: (Start)
E.g.f.: exp(x)*(2 + 18*x + 7*x^2)/2.
a(n) = n + A001106(n+1). (End)