The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A277357 a(1) = 1; for n > 1, a(n) = (2^n-1)*a(n-1) + 1. 1
1, 4, 29, 436, 13517, 851572, 108149645, 27578159476, 14092439492237, 14416565600558452, 29510709784343151245, 120846356566885204348276, 989852506639356708816728717, 16216753616272580960544466570612, 531374365744403660334160536119243405 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) ~ c * 2^(n*(n+1)/2), where c = 0.3997494420337372941776146353642774...
MATHEMATICA
RecurrenceTable[{a[n]==(2^n-1)*a[n-1]+1, a[1]==1}, a, {n, 1, 15}]
PROG
(PARI) a(n) = if (n==1, 1, (2^n-1)*a(n-1) + 1); \\ Michel Marcus, Sep 30 2017
CROSSREFS
Cf. A123672.
Sequence in context: A370165 A162287 A324227 * A173715 A230326 A272869
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 10 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 18 00:50 EDT 2024. Contains 372608 sequences. (Running on oeis4.)