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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A114520 Composites in sequence A114518. 2
6, 10, 12, 18, 22, 24, 28, 34, 36, 40, 48, 52, 54, 58, 72, 76, 82, 88, 100, 108, 112, 118, 142, 148, 160, 162, 165, 172, 184, 192, 196, 202, 208, 210, 214, 232, 250, 268, 273, 274, 288, 298, 316, 345, 352, 358, 382, 384, 385, 388, 390, 394, 399, 400, 412, 420 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

24 is a composite. 24 = 2^3 * 3 and 2^3 + 3 = 11, which is prime. So 24 is in the sequence.

MATHEMATICA

f[n_] := Plus @@ Power @@@ FactorInteger[n]; Select[Select[Range[425], PrimeQ[f[ # ]] &], ! PrimeQ[ # ] &] (*Chandler*)

PROG

(PARI) A008475(n)=local(t); if(n<1, 0, t=factor(n); sum(k=1, matsize(t)[1], t[k, 1]^t[k, 2])); for(i=1, 700, if(!isprime(i)&&isprime(A008475(i)), print1(i, ", "))) (Herrgesell)

CROSSREFS

Cf. A008475, A114518, A114521, A047820.

Sequence in context: A066038 A125592 A110085 * A046288 A076763 A064712

Adjacent sequences:  A114517 A114518 A114519 * A114521 A114522 A114523

KEYWORD

nonn

AUTHOR

Leroy Quet Dec 05 2005

EXTENSIONS

Extended by Ray Chandler (rayjchandler(AT)sbcglobal.net) and Lambert Herrgesell (zero815(AT)googlemail.com), Dec 07 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 16 21:17 EST 2012. Contains 205971 sequences.