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.

A070313 a(n) = 2^n - (2*n+1).

Original entry on oeis.org

0, -1, -1, 1, 7, 21, 51, 113, 239, 493, 1003, 2025, 4071, 8165, 16355, 32737, 65503, 131037, 262107, 524249, 1048535, 2097109, 4194259, 8388561, 16777167, 33554381, 67108811, 134217673, 268435399, 536870853, 1073741763, 2147483585
Offset: 0

Views

Author

N. J. A. Sloane, May 16 2002

Keywords

Comments

Binomial transform of (-1)^n! + !n. - Paul Barry, May 13 2004
This appears as the exponent in Krotov, who writes on p. 2: "in general, two extended Hamming codes can intersect in 2^(2^m - 2m - 1) elements." - Jonathan Vos Post, Jan 13 2013
Primes appear at positions n = 4, 7, 8, 28, 32, 81, 669, 1108, ... (A344781). - R. J. Mathar, Jan 22 2013
a(n) is the total number of dollars lost when using the Martingale method (bet $1, if win then continue to bet $1, if lose then double next bet) for n trials of a wager with exactly one win, n-1 losses. For the case with exactly one loss, n-1 wins, see A165900. - Max Winnick, Jun 28 2022

Crossrefs

Second diagonal of A046739.
Cf. A344781.

Programs

Formula

E.g.f.: (exp(x))^2 - exp(x) - 2*x*exp(x). - Paul Barry, May 13 2004
From Colin Barker, Mar 21 2012: (Start)
a(n) = 4*a(n-1) - 5*a(n-2) + 2*a(n-3).
G.f.: -x*(1-3*x)/((1-x)^2*(1-2*x)). (End)