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”).

A228763
a(n) = 2^L(n) - 1, where L(n) is the n-th Lucas number (A000032).
0
3, 1, 7, 15, 127, 2047, 262143, 536870911, 140737488355327, 75557863725914323419135, 10633823966279326983230456482242756607, 803469022129495137770981046170581301261101496891396417650687
OFFSET
0,1
FORMULA
a(n) = a(n-1) + a(n-2) + a(n-1) * a(n-2) for n>1, a(0)=3, a(1)=1.
MATHEMATICA
Table[2^LucasL[n] - 1, {n, 0, 15}] (* Bruno Berselli, Sep 03 2013 *)
PROG
(Magma) [2^Lucas(n)-1: n in [0..15]]; // Bruno Berselli, Sep 03 2013
(PARI) a(n)=2^(fibonacci(n-1)+fibonacci(n+1))-1 \\ Charles R Greathouse IV, Sep 03 2013
CROSSREFS
Sequence in context: A218810 A218638 A232295 * A101845 A193606 A221328
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Bruno Berselli, Sep 03 2013
STATUS
approved