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!)
A249241 a(n) = p - prime(n)!/prime(n)#, where p is the smallest prime number > prime(n)!/prime(n)#+1. 0
2, 2, 3, 5, 11, 7, 29, 17, 17, 397, 47, 67, 23, 41, 31, 157, 409, 31, 151, 109, 199, 191, 131, 61, 103, 547, 179, 269, 389, 317, 181, 331, 307, 173, 1259, 1289, 619, 131, 223, 683, 139, 241, 191, 101, 1039, 1367, 1153, 241, 1187, 479, 149, 181, 487, 1093, 571, 1151, 809, 199, 823, 491, 191, 151, 1321, 197, 163, 337, 467, 659, 673, 877, 487, 743, 313, 673, 857, 677, 1021 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Conjecture: All terms are prime.
While Fortune's conjecture (A005235) uses products of primes, this sequence uses products of composite numbers (more exactly: of nonprimes, because 1 belongs to them). It looks like all multiples of prime(n)# (except some powers) lead to a sequence which contains only prime numbers.
LINKS
EXAMPLE
n = 1; prime(1)!/prime(1)# = 2/2 = 1; p = nextprime(1+1) = 3; a(1) = 3-1 = 2.
PROG
(MuPAD) q:=1; p:=1; for i from 1 to 100 do q:=nextprime(q+1); p:=p*q; N:=nextprime((fact(q)/p)+2)-fact(q)/p; print(i, N); end_for:
(PARI) A092435(n)=prime(n)!/prod(i=1, n, prime(i))
a(n)=my(t=A092435(n)); nextprime(t+2)-t \\ Charles R Greathouse IV, Oct 23 2014
CROSSREFS
Cf. A092435.
Sequence in context: A049873 A127180 A317809 * A089540 A080008 A058697
KEYWORD
nonn
AUTHOR
Werner D. Sand, Oct 23 2014
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 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)