OFFSET
1,1
COMMENTS
The sequence contains progression {72k+8}_(k>=1).
Moreover, for m=72k+8, k>=1, the intersection of B_m and B_(m+1) contains the 6.
Note that for the subsequence m=56, 64, 80, 86, 92, 98, 116, 117, 118 ... even the intersection of 3 sets: B_m, B_(m+1) and B_(m+2) is not empty. For m=56, it is {18}, for m=64, it is {10}, for m=80, it is {6}, for m=86, it is {18}.
LINKS
Charlie Neder, Table of n, a(n) for n = 1..1000
Vladimir Shevelev, On divisibility of binomial(n-i-1,i-1) by i, Int. J. of Number Theory, 3, no.1 (2007), 119-139.
MATHEMATICA
B[n_] := Select[Range[1, Floor[n/2]], GCD[n, #]>1 && Divisible[Binomial[n-#-1, #-1], #] &]; aQ[n_]:=Length[Intersection[B[n], B[n+1]]]>0; Select[Range[184], aQ] (* Amiram Eldar, Dec 04 2018 *)
PROG
(Sage)
def is_A178100(n):
B_m = lambda m: set(d for d in (1..m//2) if binomial(m-d-1, d-1) % d == 0 and gcd(m, d) > 1)
return bool(B_m(n).intersection(B_m(n+1))) # D. S. McNeil, Sep 05 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, May 20 2010
EXTENSIONS
Corrected by R. J. Mathar, Sep 05 2011
STATUS
approved