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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A062459 Primes of form n^2 + mu(n). 1
2, 3, 37, 101, 197, 677, 5477, 8837, 17957, 21317, 42437, 44101, 98597, 106277, 148997, 217157, 324901, 401957, 454277, 476101, 509797, 828101, 864901, 933157, 1196837, 1378277, 1664101, 1674437, 1705637, 1833317, 1865957, 1988101 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

LINKS

Harry J. Smith, Table of n, a(n) for n=1,...,1000

MATHEMATICA

Select[Table[m^2+MoebiusMu[m], {m, 0, 1500}], PrimeQ]  (* From Harvey P. Dale, Feb 08 2011 *)

PROG

(PARI) j=[]; for(n=1, 3000, x=n^2+moebius(n); if(isprime(x), j=concat(j, x))); j

(PARI) { n=0; for (m=1, 10^5, x=m^2 + moebius(m); if (isprime(x), write("b062459.txt", n++, " ", x); if (n==1000, break)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 08 2009]

CROSSREFS

Sequence in context: A064032 A118443 A109748 * A118370 A189027 A061576

Adjacent sequences:  A062456 A062457 A062458 * A062460 A062461 A062462

KEYWORD

nonn

AUTHOR

Jason Earls (zevi_35711(AT)yahoo.com), Jul 26 2001

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 11:36 EST 2012. Contains 205623 sequences.