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.

This page as a plain text file.
%I A271317 #17 Apr 04 2016 23:22:09
%S A271317 1,2,3,4,5,7,8,9,10,14,16,20
%N A271317 Fibonacci(n) divides the n-th primorial.
%C A271317 Integers n such that A000045(n) divides A002110(n).
%C A271317 Inspired by A019532.
%e A271317 5 is a term because fibonacci(5) = 5 divides 2*3*5*7*11 = 2310.
%t A271317 Select[Range@ 20, Divisible[Product[Prime@ k, {k, #}], Fibonacci@ #] &] (* _Michael De Vlieger_, Apr 04 2016 *)
%o A271317 (PARI) for(n=1, 1e4, my(f = fibonacci(n)); if (lift(prod(i=1, n, Mod(prime(i), f))) == 0, print1(n, ", ")));
%Y A271317 Cf. A000045, A002110, A019532, A271168.
%K A271317 nonn,fini,full
%O A271317 1,2
%A A271317 _Altug Alkan_, Apr 03 2016