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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A123953 a(0)=1. a(n) = number of terms among terms a(0) through a(n-1) of the sequence which are coprime to n(n+1)/2. 1
1, 1, 2, 2, 2, 5, 6, 3, 3, 5, 8, 4, 4, 13, 9, 3, 9, 11, 12, 9, 4, 12, 21, 6, 4, 22, 14, 6, 12, 14, 15, 14, 5, 17, 25, 5, 10, 37, 23, 6, 14, 22, 23, 20, 7, 21, 44, 14, 13, 33, 25, 13, 24, 35, 23, 16, 17, 39, 58, 13, 14, 61, 35, 20, 20, 26, 43, 33, 19, 27, 48, 25, 26, 72, 37, 17, 32, 35 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

EXAMPLE

Among terms a(0),a(1),...a(8) there are 5 terms coprime to 9*10/2 = 45. (These terms are a(0)=1, a(1)=1, a(2)=2, a(3)=2 and a(4)=2.) So a(9) = 5.

MATHEMATICA

f[l_List] := Block[{n = Length[l]}, Append[l, Length @ Select[l, GCD[n*(n + 1)/2, # ] == 1 &]]]; Nest[f, {1}, 80] (*Chandler*)

a[0] = 1; a[n_] := a[n] = Count[ GCD[ Table[ a[i], {i, 0, n - 1}], n(n + 1)/2], 1]; Table[ a[n], {n, 0, 77}] (* Robert G. Wilson v *)

CROSSREFS

Cf. A119989.

Sequence in context: A073819 A190846 A066835 * A097006 A033306 A136347

Adjacent sequences:  A123950 A123951 A123952 * A123954 A123955 A123956

KEYWORD

nonn

AUTHOR

Leroy Quet Nov 22 2006

EXTENSIONS

Extended by Ray Chandler (rayjchandler(AT)sbcglobal.net) and Robert G. Wilson v (rgwv(at)rgwv.com), Nov 23 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 16 19:19 EST 2012. Contains 205945 sequences.