OFFSET
1,3
COMMENTS
This sequence is the number of distinct terms in the first difference sequence for rows n in A286941 and A309497.
Number of distinct terms listed in row n of A331118. - Michael De Vlieger, Jul 11 2020
LINKS
Mario Ziller, On differences between consecutive numbers coprime to primorials, arXiv:2007.01808 [math.NT], 2020.
EXAMPLE
For n = 3, A002110(3) = 30, RRS = {1, 7, 11, 13, 17, 19, 23, 29}, dRRS = {6, 4, 2, 4, 2, 4, 6}, so a(3) = 3.
MATHEMATICA
Primorial[n_] := Times @@ Prime[Range[n]]; Table[Length@ Union@ Differences@ Select[Range@ Primorial[n], CoprimeQ[#, Primorial[n]] &], {n, 7}] (* after Michael De Vlieger Jul 15 2017 from A061498 *)
PROG
(PARI) f(n) = {my(va = select(x->(gcd(n, x)==1), [1..n])); vd = vector(#va-1, k, va[k+1] - va[k]); #Set(vd); } \\ A061498
a(n) = f(prod(i=1, n, prime(i))); \\ Michel Marcus, Dec 19 2019
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
Jamie Morken, Nov 21 2019
EXTENSIONS
a(12)-a(44) from Jamie Morken, Jul 11 2020 (after Mario Ziller)
STATUS
approved