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.

A193578 a(n) = (13^n + 1)/2.

Original entry on oeis.org

1, 7, 85, 1099, 14281, 185647, 2413405, 31374259, 407865361, 5302249687, 68929245925, 896080197019, 11649042561241, 151437553296127, 1968688192849645, 25592946507045379, 332708304591589921, 4325207959690668967, 56227703475978696565, 730960145187723055339, 9502481887440399719401
Offset: 0

Views

Author

Vincenzo Librandi, Sep 17 2011

Keywords

Crossrefs

Cf. A141012.

Programs

Formula

a(n) = 13*a(n-1) - 6, a(0)=1.
From Elmo R. Oliveira, Mar 25 2025: (Start)
G.f.: (1-7*x)/((1-x)*(1-13*x)).
E.g.f.: exp(7*x)*cosh(6*x).
a(n) = 14*a(n-1) - 13*a(n-2).
a(n) = A141012(n+1)/2. (End)