login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A271317
Fibonacci(n) divides the n-th primorial.
0
1, 2, 3, 4, 5, 7, 8, 9, 10, 14, 16, 20
OFFSET
1,2
COMMENTS
Integers n such that A000045(n) divides A002110(n).
Inspired by A019532.
EXAMPLE
5 is a term because fibonacci(5) = 5 divides 2*3*5*7*11 = 2310.
MATHEMATICA
Select[Range@ 20, Divisible[Product[Prime@ k, {k, #}], Fibonacci@ #] &] (* Michael De Vlieger, Apr 04 2016 *)
PROG
(PARI) for(n=1, 1e4, my(f = fibonacci(n)); if (lift(prod(i=1, n, Mod(prime(i), f))) == 0, print1(n, ", ")));
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Altug Alkan, Apr 03 2016
STATUS
approved