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.

A278612 Sum of terms in level n of TRIP - Stern sequence associated with permutation triple (e, e, e).

Original entry on oeis.org

3, 8, 22, 60, 162, 436, 1174, 3164, 8530, 22996, 61990, 167100, 450434, 1214196, 3273014, 8822812, 23782962, 64109844, 172815814, 465845884, 1255743842, 3385009204, 9124701142, 24596733916, 66303466770, 178729002068, 481785610086, 1298711297084, 3500833146178, 9436918539636, 25438353615990
Offset: 0

Views

Author

Ilya Amburg, Nov 23 2016

Keywords

Crossrefs

Programs

  • PARI
    Vec((3 - 4*x + 5*x^2) / (1 - 4*x + 5*x^2 - 4*x^3) + O(x^40)) \\ Colin Barker, Jan 09 2018

Formula

a(n) = A271896(n) + A271897(n) + A271898(n). - R. J. Mathar, Dec 02 2016
From Colin Barker, Jan 09 2018: (Start)
G.f.: (3 - 4*x + 5*x^2) / (1 - 4*x + 5*x^2 - 4*x^3).
a(n) = 4*a(n-1) - 5*a(n-2) + 4*a(n-3) for n>2.
(End)