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.

A169723 3^(n-1)*(2*3^(n-1)+3)+1.

Original entry on oeis.org

6, 28, 190, 1540, 13366, 118828, 1065070, 9572500, 86113126, 774900028, 6973745950, 62762650660, 564860667286, 5083736439628, 45753599258830, 411782307236020, 3706040506843846, 33354363786753628, 300189271756259710, 2701703438832768580
Offset: 1

Views

Author

Alice V. Kleeva (alice27353(AT)gmail.com), Jan 19 2010

Keywords

Comments

A subsequence of the triangular numbers A000217.

Crossrefs

Programs

  • Magma
    I:=[6,28,190]; [n le 3 select I[n] else 13*Self(n-1)-39*Self(n-2)+27*Self(n-3): n in [1..30]]; // Vincenzo Librandi, Dec 03 2012
  • Mathematica
    LinearRecurrence[{13, -39, 27}, {6, 28, 190}, 50]  (* or *) CoefficientList[Series[(-6 + 50 x - 60 x^2)/((x - 1) (3 x - 1) (9 x - 1)), {x, 0, 20}], x] (* Vincenzo Librandi, Dec 03 2012 *)

Formula

G.f.: x*(-6+50*x-60*x^2)/((x-1)*(3*x-1)*(9*x-1)). - Vincenzo Librandi, Dec 03 2012
a(n) = 13*a(n-1)-39*a(n-2)+27*a(n-3). - Vincenzo Librandi, Dec 03 2012
a(n) = 2*9^(n-1)+3^n+1. - Bruno Berselli, Dec 05 2012