A103845 Product of first n Lucas numbers, plus one.
1, 2, 4, 13, 85, 925, 16633, 482329, 22669417, 1722875617, 211913700769, 42170826452833, 13579006117811905, 7074662187380001985, 5963940223961341672513, 8134814465483270041306369
Offset: 0
Examples
a(10) = 1 * 3 * 4 * 7 * 11 * 18 * 29 * 47 * 76 * 123 + 1 = 211913700769 = 349 * 607202581 which is semiprime.
Programs
-
Mathematica
Join[{1},Rest[FoldList[Times,1,LucasL[Range[20]]]]+1] (* Harvey P. Dale, Oct 25 2011 *)
Comments