login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A144046 Numbers n such that |n!-107| and |n!+107| are prime. 6
3, 4, 5, 6, 7, 8, 80 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

FORMULA

5!-107=13 and 5!+107=227, so 5 is a member.

MATHEMATICA

lst={}; a=107; Do[If[PrimeQ[n!-a]&&PrimeQ[n!+a], AppendTo[lst, n]], {n, 0, 20^2}]; lst

PROG

(PARI) for(n=1, 106, if(ispseudoprime(abs(n!-107))&&ispseudoprime(n!+107), print1(n", "))) \\ Charles R Greathouse IV, Oct 05 2011

CROSSREFS

Sequence in context: A037349 A037350 A014615 * A194276 A184336 A183300

Adjacent sequences:  A144043 A144044 A144045 * A144047 A144048 A144049

KEYWORD

nonn,fini,full

AUTHOR

Vladimir Orlovsky (4vladimir(AT)gmail.com), Sep 08 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 05:09 EST 2012. Contains 205570 sequences.