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.

A271317 Fibonacci(n) divides the n-th primorial.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 8, 9, 10, 14, 16, 20
Offset: 1

Views

Author

Altug Alkan, Apr 03 2016

Keywords

Comments

Integers n such that A000045(n) divides A002110(n).
Inspired by A019532.

Examples

			5 is a term because fibonacci(5) = 5 divides 2*3*5*7*11 = 2310.
		

Crossrefs

Programs

  • Mathematica
    Select[Range@ 20, Divisible[Product[Prime@ k, {k, #}], Fibonacci@ #] &] (* Michael De Vlieger, Apr 04 2016 *)
  • PARI
    for(n=1, 1e4, my(f = fibonacci(n)); if (lift(prod(i=1, n, Mod(prime(i), f))) == 0, print1(n, ", ")));