login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A210394 a(n) = least integer m>1 such that m divides none of S_i!+S_j! with 0<i<j<=n where S_k is the sum of the first k primes. 6
2, 3, 7, 11, 19, 31, 43, 67, 79, 101, 131, 163, 199, 241, 283, 331, 383, 443, 503, 571, 641, 719, 797, 877, 967, 1061, 1163, 1277, 1373, 1481, 1597, 1721, 1871, 1999, 2129, 2281, 2437, 2593, 2749, 2927, 3089, 3271, 3457, 3643, 3833, 4057, 4229, 4441, 4673, 4889 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
When n>1, we have S_n!+S_{n-1}!=0 (mod m) for all m=1,...,S_{n-1} and hence a(n)>S_{n-1}. Zhi-Wei Sun conjectured that a(n) is always a prime not exceeding S_n.
LINKS
Zhi-Wei Sun, On functions taking only prime values, J. Number Theory 133(2013), no.8, 2794-2812.
EXAMPLE
We have a(3)=7, since m=7 divides none of 2!+(2+3)!,2!+(2+3+5)!,(2+3)!+(2+3+5)! but this fails for m=2,3,4,5,6.
MATHEMATICA
s[n_]:=s[n]=Sum[Prime[k], {k, 1, n}]
f[n_]:=s[n]!
R[n_, m_]:=Product[If[Mod[f[k]+f[j], m]==0, 0, 1], {k, 2, n}, {j, 1, k-1}]
Do[Do[If[R[n, m]==1, Print[n, " ", m]; Goto[aa]], {m, Max[2, s[n-1]], s[n]}];
Print[n]; Label[aa]; Continue, {n, 1, 225}]
CROSSREFS
Sequence in context: A062576 A238686 A079739 * A211203 A350402 A158709
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Mar 20 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)