login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A080136
Least positive integer multiples of angle x such that their direction cosines form a unit vector: sum(k>0, cos(a(k)*x)^2)=1, where a(1)=1 and x=1.
6
1, 2, 4, 5, 8, 11, 33, 55, 77, 99, 121, 322, 344, 366, 388, 699, 39394, 49689, 51109, 51819, 52174, 52529, 156167, 156522, 260515, 364508, 364863, 573204, 885893, 1406923, 1719612, 4846147, 5992555, 10265498, 11411906, 15684849, 21104200
OFFSET
1,2
LINKS
PROG
(PARI) x=1; z=cos(x)^2; a=1; for(n=1, 45, b=a+1; while(z+cos(b*x)^2>1, b++); z=z+cos(b*x)^2; a=b; print1(b, ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 30 2003
EXTENSIONS
Extended with PARI program by Benoit Cloitre, Feb 04 2003
STATUS
approved