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.

A016134 Expansion of g.f. 1/((1-2*x)*(1-10*x)).

Original entry on oeis.org

1, 12, 124, 1248, 12496, 124992, 1249984, 12499968, 124999936, 1249999872, 12499999744, 124999999488, 1249999998976, 12499999997952, 124999999995904, 1249999999991808, 12499999999983616, 124999999999967232, 1249999999999934464, 12499999999999868928, 124999999999999737856
Offset: 0

Views

Author

Keywords

Examples

			G.f. = 1 + 12*x + 124*x^2 + 1248*x^3 + 12496*x^4 + 124992*x^5 + ...
		

Crossrefs

Cf. A060458. - Zerinvary Lajos, Jun 05 2009

Programs

Formula

a(n) = 125*10^(n-2) - 2^(n-2) = a(n-1)*10 + 2^n. - Henry Bottomley, Jun 06 2000
G.f.: 1/(1-12*x+20*x^2). - Zerinvary Lajos, Apr 27 2009 [corrected by R. J. Mathar, Mar 14 2011]
From Michael Somos, Dec 03 2016: (Start)
Convolution of A000079 and A011557.
a(n) = (5*10^n - 2^n)/4. (End)
From Elmo R. Oliveira, Mar 26 2025: (Start)
E.g.f.: exp(2*x)*(5*exp(8*x) - 1)/4.
a(n) = A060458(n+1)/8.
a(n) = 12*a(n-1) - 20*a(n-2). (End)