OFFSET
1,1
COMMENTS
The number of 2's will decrease and the number of 0's will increase as n increases. If there is any pattern (even a local pattern), then the sequence will generate prime numbers, so I predict the values of the sequence have no pattern.
EXAMPLE
From Michael De Vlieger, Dec 31 2016: (Start)
a(1) = 2 since both 1(6)-1 = 5 and 1(6)+1 = 7 are prime.
a(4) = -1 since only 4(6)-1 = 23 is prime; 4(6)+1 = 25 is divisible by 5.
a(20) = 0 since neither 20(6)-1 = 119 nor 20(6)+1 = 121 are prime.
(End)
MATHEMATICA
Table[If[Times @@ Abs@ # == 1, Total@ Abs@ #, Total@ #] &[{-1, 1} Boole@ Map[PrimeQ, n + {-1, 1}]], {n, 6, 546, 6}] (* Michael De Vlieger, Dec 31 2016 *)
CROSSREFS
KEYWORD
sign
AUTHOR
Shannon Jacobs, Dec 31 2016
STATUS
approved