cp's OEIS Frontend

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.

Showing 1-1 of 1 results.

A336481 a(n) is the smallest positive k such that Fibonorial(n) - k is a prime, for n>3.

Original entry on oeis.org

1, 1, 1, 1, 1, 11, 19, 19, 29, 19, 1, 1, 97, 41, 23, 131, 107, 53, 101, 529, 53, 269, 347, 97, 317, 97, 353, 73, 97, 193, 71, 1543, 661, 257, 193, 191, 151, 443, 167, 967, 251, 2441, 163, 151, 379, 229, 127, 59, 1223, 911, 389, 349, 919, 179, 1051, 167, 547, 541
Offset: 4

Views

Author

Mohamed Sami Gattoufi, Jul 22 2020

Keywords

Examples

			For n=5, a(5) = Fibonorial(5) - 1 = 30 - 1 = 29 is a prime.
		

Crossrefs

Cf. A003266, A059709 (locations of 1's), A336480.

Programs

  • Mathematica
    Table[(Fibonorial[n]-NextPrime[Fibonorial[n],-1]),{n,4,50}]
  • PARI
    f(n) = prod(i=1, n, fibonacci(i)); \\ A003266
    a(n) = my(fn=f(n)); fn - precprime(fn-1); \\ Michel Marcus, Jul 23 2020
Showing 1-1 of 1 results.