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

A015495
a(0)=1, a(1)=7, a(n) = sum_{k=0}^{k=n-1} 7^k a(k).
0
1, 7, 50, 2500, 860000, 2065720000, 34720621760000, 4084881150064000000, 3364079361848306816000000, 19393251433341842829490432000000, 782587666186514855538867732678656000000
OFFSET
0,2
FORMULA
a(n) = (7^(n-2) + 1) * Self(n-1). - Vincenzo Librandi, Nov 11 2012
PROG
(Magma) I:=[1, 7, 50]; [n le 3 select I[n] else (7^(n-2)+1)*Self(n-1): n in [1..15]]; // Vincenzo Librandi, Nov 11 2012
CROSSREFS
Sequence in context: A041086 A197890 A320989 * A056581 A039308 A029525
KEYWORD
nonn,easy
STATUS
approved