A100703 (T(n-1) + T(n-2)) + T(n-1)*T(n-2) where T(0)=3, T(1)=5 and n >= 2.
3, 5, 23, 143, 3455, 497663, 1719926783, 855945643032575, 1472163837099830446915583, 1260092222195718836233500990239234064383, 1855062200927301576619335433612526767115692635401046316868960255
Offset: 0
Keywords
Examples
(3 + 5) + 3*5 = 23
Crossrefs
Similar to A063896 but with initial terms 3 and 5.
Programs
-
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 *)
Formula
a(n) = (a(n-1) + a(n-2)) + a(n-1)*a(n-2) with a(0)=3 and a(1)=5
Extensions
More terms from Harvey P. Dale, Sep 15 2014