OFFSET
1,2
COMMENTS
The discriminator D(4,n).
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..1000
P. Moree, H. Roskam, On an arithmetical function related to Euler's totient and the discriminator, Fib. Quart. 33 (4) (1995), 332-340
MAPLE
dis := proc(j, n) local k, s, i; for k from 1 do s := {} ; for i from 1 to n do s := s union { (i^j) mod k} ; end do: if nops(s) = n then return k; end if; end do: end proc:
A192420 := proc(n) dis(4, n) ; end proc:
MATHEMATICA
a[n_] := For[k = 1, True, k++, If[Unequal @@ PowerMod[Range[n], 4, k], Return[k]]]; Array[a, 100] (* Jean-François Alcover, May 18 2018 *)
PROG
(PARI) A192420(nMax, f=n->n^4)={my(S=[], a=1); vector(nMax, n, S=concat(S, f(n)); while(#Set(S%a)<n, a++); a)} \\ M. F. Hasler, May 04 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
R. J. Mathar, Jun 30 2011
STATUS
approved