login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A059723
Mean of the first 2^n nonnegative powers of 3, i.e., (1 + 3 + 3^2 + ... + 3^(2^n-1))/2^n.
8
1, 2, 10, 410, 1345210, 28953440450810, 26825654846035253786389446010, 46055408506791340513753409614892651037805514032327504332410
OFFSET
0,2
LINKS
N. J. A. Sloane, A Nasty Surprise in a Sequence and Other OEIS Stories, Experimental Mathematics Seminar, Rutgers University, Oct 10 2024, Youtube video; Slides [Mentions this sequence]
FORMULA
a(n) = (3^(2^n) - 1)/2^(n+1).
EXAMPLE
a(3) = (1 + 3 + 9 + 27 + 81 + 243 + 729 + 2187)/8 = 3280/8 = 410.
PROG
(PARI) { for (n=0, 11, write("b059723.txt", n, " ", (3^(2^n) - 1)/2^(n + 1)); ) } \\ Harry J. Smith, Jun 28 2009
CROSSREFS
Sequence in context: A261007 A013034 A207140 * A334286 A265627 A112449
KEYWORD
nonn
AUTHOR
Henry Bottomley, Feb 07 2001
STATUS
approved