login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A259230
a(n) = smallest k such that (A115091(n)-k)! == -1 (mod A115091(n)^2).
1
1, 6, 1, 24, 64, 1, 384
OFFSET
1,2
COMMENTS
The values of m in A115091.
A115091(n) is in A007540 iff a(n) = 1.
EXAMPLE
a(2) = 6, because 6 is the smallest k such that (A115091(2)-k)! == -1 (mod A115091(2)^2), which yields the congruence (11-6)! == -1 (mod 11^2).
MATHEMATICA
t = Select[Prime@ Range@ 120, AnyTrue[Range@ #, Function[m, Divisible[m! + 1, #^2]]] &]; Table[k = 1; While[Mod[(t[[n]] - k)!, t[[n]]^2] != t[[n]]^2 - 1, k++]; k, {n, 7}] (* Michael De Vlieger, Nov 10 2015, Version 10 *)
PROG
(PARI) forprime(p=1, , for(k=1, p-1, if(Mod((p-k)!, p^2)==-1, print1(k, ", "); break({1}))))
CROSSREFS
Sequence in context: A338865 A278958 A281631 * A375550 A278756 A147327
KEYWORD
nonn,hard,more
AUTHOR
Felix Fröhlich, Nov 08 2015
STATUS
approved