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.

A014916 a(1)=1, a(n) = n*4^(n-1) + a(n-1).

Original entry on oeis.org

1, 9, 57, 313, 1593, 7737, 36409, 167481, 757305, 3378745, 14913081, 65244729, 283348537, 1222872633, 5249404473, 22429273657, 95443717689, 404681363001, 1710351420985, 7207909559865, 30297653743161, 127054676987449, 531674956009017, 2220524816272953, 9257399234039353
Offset: 1

Views

Author

Keywords

Programs

  • Magma
    I:=[1, 9]; [n le 2 select I[n] else 8*Self(n-1)-16*Self(n-2)+ 1: n in [1..30]]; // Vincenzo Librandi, Oct 23 2012
  • Maple
    a:=n->sum (4^n-4^j, j=0..n): seq(a(n)/3, n=1..31); # Zerinvary Lajos, Dec 14 2008
  • Mathematica
    Join[{a=1,b=9},Table[c=8*b-16*a+1;a=b;b=c,{n,60}]] (* Vladimir Joseph Stephan Orlovsky, Feb 07 2011 *)
    CoefficientList[Series[1/((1 - x)(1 - 4*x)^2), {x, 0, 40}], x] (* Vincenzo Librandi, Oct 23 2012 *)
    LinearRecurrence[{9,-24,16},{1,9,57},30] (* Harvey P. Dale, Jul 25 2015 *)

Formula

a(1)=1, a(2)=9, a(n) = 8*a(n-1) - 16*a(n-2) + 1. - Vincenzo Librandi, Oct 23 2012
G.f.: x/((1-x)*(1-4*x)^2). - Vincenzo Librandi, Oct 23 2012
a(n) = (4^n*(3*n-1) + 1)/9. - Thomas M. Cowley, Jan 25 2025
E.g.f.: exp(x)*(1 + exp(3*x)*(12*x - 1))/9. - Stefano Spezia, Jan 31 2025