OFFSET
1,1
COMMENTS
This sequence contains primes dividing all Fibonacci sequences.
EXAMPLE
6 is a term because (1*1*2*3*5*8) is not divisible by (1+2+3+4+5+6).
5 is not a term because (1*1*2*3*5) is divisible by (1+2+3+4+5).
MATHEMATICA
nn = 800; Function[k, Select[Range@ nn, ! Divisible[k[[#]], # (# + 1)/2] &]]@ FoldList[Times, Array[Fibonacci@ # &, nn]] (* Michael De Vlieger, Mar 19 2016 *)
PROG
(PARI) a(n) = prod(k=1, n, fibonacci(k));
for(n=1, 1e3, if(a(n) % (n*(n+1)/2) != 0, print1(n, ", ")));
CROSSREFS
KEYWORD
nonn
AUTHOR
Altug Alkan, Mar 17 2016
STATUS
approved