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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A082865 a(n) is the sum of the preceding terms that are coprime to n. 0
1, 2, 3, 4, 10, 1, 21, 26, 44, 26, 94, 2, 182, 5, 382, 31, 834, 38, 1668, 57, 666, 119, 4216, 157, 8574, 395, 5735, 6385, 29678, 309, 49683, 62902, 80713, 143496, 320705, 414247, 1125010, 878510, 2929386, 545342, 6609659, 507670, 7117329, 14284850 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

EXAMPLE

a(6)=1 as 2,3,4 and 10 all have gcd(6,x)>1.

PROG

(PARI) { v=vector(100, i, 0); v[1]=1; v[2]=2; print1("1, 2, "); for (i=3, 100, for (j=1, i-1, if (gcd(i, v[j]) == 1, v[i]+=v[j])); print1(v[i]", ")) }

CROSSREFS

Sequence in context: A076018 A076017 A135112 * A158929 A140598 A129920

Adjacent sequences:  A082862 A082863 A082864 * A082866 A082867 A082868

KEYWORD

nonn

AUTHOR

Jon Perry (perry(AT)globalnet.co.uk), May 24 2003

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 13 12:01 EST 2012. Contains 205469 sequences.