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

A100703
(T(n-1) + T(n-2)) + T(n-1)*T(n-2) where T(0)=3, T(1)=5 and n >= 2.
0
3, 5, 23, 143, 3455, 497663, 1719926783, 855945643032575, 1472163837099830446915583, 1260092222195718836233500990239234064383, 1855062200927301576619335433612526767115692635401046316868960255
OFFSET
0,1
FORMULA
a(n) = (a(n-1) + a(n-2)) + a(n-1)*a(n-2) with a(0)=3 and a(1)=5
EXAMPLE
(3 + 5) + 3*5 = 23
MATHEMATICA
RecurrenceTable[{a[0]==3, a[1]==5, a[n]==a[n-1]+a[n-2]+a[n-1]a[n-2]}, a, {n, 10}] (* Harvey P. Dale, Sep 15 2014 *)
CROSSREFS
Similar to A063896 but with initial terms 3 and 5.
Sequence in context: A209028 A178068 A018978 * A352691 A137086 A137087
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Dec 09 2004
EXTENSIONS
More terms from Harvey P. Dale, Sep 15 2014
STATUS
approved