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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A125902 a(n) = sum of the first n primes which are coprime to n. 1
2, 8, 14, 26, 36, 72, 70, 98, 126, 190, 186, 276, 268, 372, 432, 438, 484, 634, 620, 784, 864, 950, 940, 1156, 1156, 1356, 1368, 1584, 1564, 1978, 1820, 1986, 2262, 2408, 2572, 2742, 2710, 3066, 3250, 3440, 3406, 4016, 3788, 4214, 4430, 4636, 4614, 5112 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

The first 6 primes which are coprime to 6 are 5,7,11,13,17,19. So a(6)=5+7+11+13+17+19 = 72.

MATHEMATICA

f[n_] := Block[{c = n, k = 0, p, s = 0}, While[c > 0, k++; While[p = Prime[k]; GCD[p, n] > 1, k++ ]; c--; s += p; ]; s]; Table[f[n], {n, 50}] (*Chandler*)

CROSSREFS

Cf. A119993, A125903.

Sequence in context: A107072 A120413 A161156 * A173974 A056677 A053697

Adjacent sequences:  A125899 A125900 A125901 * A125903 A125904 A125905

KEYWORD

nonn

AUTHOR

Leroy Quet Dec 13 2006

EXTENSIONS

Extended by Ray Chandler (rayjchandler(AT)sbcglobal.net), Dec 14 2006

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 20:26 EST 2012. Contains 205852 sequences.