A053412 n-th nonzero Fibonacci numbers arising in A053408.
1, 1, 2, 3, 5, 8, 13, 21, 17711, 317811
Offset: 0
Keywords
Crossrefs
See A000045 for the Fibonacci numbers.
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
List([1..20], n-> 1+Product([1..n], j-> Fibonacci(j)) ); # G. C. Greubel, Sep 26 2019
[1+(&*[Fibonacci(j): j in [1..n]]): n in [1..20]]; // G. C. Greubel, Sep 26 2019
seq(1+mul(combinat:-fibonacci(j),j=1..n), n=1..30); # Robert Israel, Jun 10 2015
1 + Table[Times @@ Fibonacci[Range[n]], {n, 20}] (* T. D. Noe, Dec 29 2012 *) FoldList[Times,Fibonacci[Range[20]]]+1 (* Harvey P. Dale, Feb 28 2023 *)
vector(20, n, 1+prod(j=1,n, fibonacci(j))) \\ G. C. Greubel, Sep 26 2019
[1+product(fibonacci(j) for j in (1..n)) for n in (1..20)] # G. C. Greubel, Sep 26 2019
Select[Rest[FoldList[Times,1,Fibonacci[Range[80]]]+1],PrimeQ] (* Harvey P. Dale, Apr 25 2012 *)
a = 1; Do[ a = a*Fibonacci[n]; If[ PrimeQ[a - 1], Print[n] ], {n, 1, 247} ]
a(15) = 1 * 1 * 2 * 3 * 5 * 8 * 13 * 21 * 34 * 55 * 89 * 144 * 233 * 377 * 610 - 1 = 84138564904377983999 is prime.
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
FoldList[Times,Fibonacci[Range[20]]]-1 (* Harvey P. Dale, Aug 29 2021 *)
1^1 = 1 2^2 = 4 3^3 = 27 4^4 = 256 5^5 = 3125 6^6 = 46656 7^7 = 823543 8^8 = 16777216 22^22 = 341427877364219557396646723584
Select[Range[10^4], If[Count[IntegerDigits[#^#], 0] == 0, True] &] (* Michael De Vlieger, Aug 07 2014 *)
for(n=1,10^3,d=digits(n^n);if(vecmin(d),print1(n,", "))) \\ Derek Orr, Aug 05 2014
For n=5, Fibonorial(5) + 1 = 30 + 1 = 31 is a prime.
Table[(NextPrime[Fibonorial[n]]-Fibonorial[n]),{n,1,50}] NextPrime[#]-#&/@Fibonorial[Range[60]] (* Harvey P. Dale, Dec 24 2023 *)
f(n) = prod(i=1, n, fibonacci(i)); \\ A003266 a(n) = my(fn=f(n)); nextprime(fn+1) - fn; \\ Michel Marcus, Jul 23 2020
Comments