login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A103815 a(n) = -1 + Product_{k=1..n} Fibonacci(k). 2
0, 0, 1, 5, 29, 239, 3119, 65519, 2227679, 122522399, 10904493599, 1570247078399, 365867569267199, 137932073613734399, 84138564904377983999, 83044763560621070207999, 132622487406311849122175999, 342696507457909818131702783999, 1432814097681520949608649339903999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
a(n) asymptotic to Phi^A000217(n). Prime for n = 4, 5, 6, 7, 8, 14, 15. Semiprime for n = 9, 10, 11, 20.
Thus, it is not until the 12th element in the sequence that we get number with more than 2 prime factors: 1570247078399 = 37 * 59 * 16349 * 43997. - Jonathan Vos Post, Dec 08 2012
LINKS
FORMULA
a(n) = Product[Fibonacci[k], {k, 1, n}]-1 = Product[A000045[k], {k, 1, n}]-1.
a(n) = A003266(n) - 1. - Alois P. Heinz, Aug 09 2018
EXAMPLE
a(15) = 1 * 1 * 2 * 3 * 5 * 8 * 13 * 21 * 34 * 55 * 89 * 144 * 233 * 377 * 610 - 1 = 84138564904377983999 is prime.
MAPLE
F:= n-> (<<0|1>, <1|1>>^n)[1, 2]:
a:= n-> -1 + mul(F(i), i=1..n):
seq(a(n), n=1..20); # Alois P. Heinz, Aug 09 2018
MATHEMATICA
FoldList[Times, Fibonacci[Range[20]]]-1 (* Harvey P. Dale, Aug 29 2021 *)
CROSSREFS
Sequence in context: A087662 A113012 A000354 * A134752 A370768 A231712
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Mar 29 2005
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 09:38 EDT 2024. Contains 371967 sequences. (Running on oeis4.)