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.

A134067 Row sums of triangle A134066.

Original entry on oeis.org

1, 6, 14, 30, 62, 126, 254, 510, 1022, 2046, 4094, 8190, 16382, 32766, 65534, 131070, 262142, 524286, 1048574, 2097150, 4194302, 8388606, 16777214, 33554430, 67108862, 134217726, 268435454, 536870910, 1073741822, 2147483646, 4294967294, 8589934590, 17179869182
Offset: 0

Views

Author

Gary W. Adamson, Oct 06 2007

Keywords

Comments

Essentially the same as A095121. - R. J. Mathar, Mar 28 2012

Examples

			a(3) = 30 = sum of row 3 terms of triangle A134066: (2 + 12 + 12 + 4).
a(3) = 30 = (1, 3, 3, 1) dot (1, 5, 3, 5) = (1 + 15 + 9 + 5).
		

Crossrefs

Programs

Formula

Binomial transform of (1, 5, 3, 5, 3, 5, ...).
From Colin Barker, Mar 13 2014: (Start)
a(n) = 2^(2+n) - 2 for n > 0.
a(n) = 3*a(n-1) - 2*a(n-2) for n > 0.
G.f.: -(2*x^2-3*x-1) / ((x-1)*(2*x-1)). (End)
E.g.f.: 2*exp(x)*(2*exp(x) - 1) - 1. - Stefano Spezia, May 07 2023