OFFSET
1,2
COMMENTS
Is there a maximum value of a(n) - a(n-1)?
A263161 is not a subsequence although they have many common terms.
Terms that are not congruent to 0 (mod 6): 1, 13868, 16016, 34988, 158252, 196412, 313988, 1287788, 2056748, 2212412, 2542028, 2847260, 2951708, 6117548, 7538108, 7756988, 9056732, 9865628, ... . - Robert G. Wilson v, Oct 15 2015
EXAMPLE
MATHEMATICA
fQ[n_] := Mod[ Fibonacci[n + 1] + Fibonacci[n + 3] - 3, n (n + 1)/2] == 0; Select[ Range@ 16000, fQ] (* Robert G. Wilson v, Oct 15 2015 *)
PROG
(PARI) for(n=1, 20000, if((fibonacci(n+3) + fibonacci(n+1)-3) % (n*(n+1)/2) == 0, print1(n", ")));
(Magma) [n: n in [1..20000] | IsDivisibleBy(Lucas(n+2)-3, n*(n+1) div 2)]; // Bruno Berselli, Oct 19 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Altug Alkan, Oct 12 2015
STATUS
approved