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.

A016130 Expansion of g.f. 1/((1-2*x)*(1-7*x)).

Original entry on oeis.org

1, 9, 67, 477, 3355, 23517, 164683, 1152909, 8070619, 56494845, 395464939, 2768256621, 19377800443, 135644611293, 949512295435, 6646586100813, 46526102771227, 325682719529661, 2279779036969771, 15958453259312685, 111709172816237371, 781964209715758749, 5473749468014505547
Offset: 0

Views

Author

Keywords

Examples

			1/((1-2*x)*(1-7*x)) = 1 + 9*x + 67*x^2 + 477*x^3 + 3355*x^4 + 23517*x^5 + 164683*x^6 + ...
		

Crossrefs

Cf. A190540.

Programs

Formula

a(n) = (7^(n+1) - 2^(n+1))/5. - Lambert Klasen (lambert.klasen(AT)gmx.net), Feb 06 2005
a(n) = 7*a(n-1) + 2^n, a(0)=1. - Vincenzo Librandi, Jun 24 2013
From Elmo R. Oliveira, Mar 27 2025: (Start)
E.g.f.: exp(2*x)*(7*exp(5*x) - 2)/5.
a(n) = A190540(n+1)/5.
a(n) = 9*a(n-1) - 14*a(n-2). (End)