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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A081507 Numbers n for which 2^n+3^n+4^n is prime, cf. A081506. 0
0, 2, 4, 6, 8, 108, 144, 334, 1422, 4824 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

EXAMPLE

n=2: 2^2+3^2+4^2=4+9+16=29 prime.

MATHEMATICA

Do[s=2^w+3^w+4^w; If[IntegerQ[w/100], Print[{w}]]; If[PrimeQ[s], Print[{w, s}]], {w, 0, 1000}]

Do[ If[ PrimeQ[2^w+3^w+4^w], Print[n]], {n, 0, 5000}]

Select[Range[5000], PrimeQ[Plus@@({2, 3, 4}^#)]&] (* From Harvey P. Dale, Jan 03 2011 *)

CROSSREFS

Sequence in context: A075401 A083145 A085920 * A115336 A119666 A087302

Adjacent sequences:  A081504 A081505 A081506 * A081508 A081509 A081510

KEYWORD

more,nonn,changed

AUTHOR

Labos E. (labos(AT)ana.sote.hu), Apr 15 2003

EXTENSIONS

a(8) & a(9) from Robert G. Wilson v (rgwv(AT)rgwv.com), Jul 22 2005

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 15 19:15 EST 2012. Contains 205852 sequences.