login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A189926 a(n) = n + [n*s/r] + [n*t/r]; r=1, s=sin(Pi/5), t=cos(Pi/5), where [] denotes the floor function. 7
1, 4, 6, 9, 11, 13, 16, 18, 21, 23, 25, 28, 30, 33, 35, 37, 39, 42, 45, 47, 49, 51, 54, 57, 59, 62, 63, 66, 69, 71, 74, 75, 78, 80, 83, 86, 87, 90, 92, 95, 98, 99, 102, 104, 107, 110, 112, 114, 116, 119, 121, 124, 126, 128, 131, 133, 136, 138, 140, 143, 145, 148, 150, 152, 155, 157, 160, 162, 164, 167, 169, 172, 174, 176, 179, 181, 184 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is one of three sequences that partition the positive integers. In general, suppose that r, s, t are positive real numbers for which the sets {i/r: i>=1}, {j/s: j>=1}, {k/t: k>=1} are pairwise disjoint. Let a(n) be the rank of n/r when all the numbers in the three sets are jointly ranked. Define b(n) and c(n) as the ranks of n/s and n/t. It is easy to prove that
a(n) = n + [n*s/r] + [n*t/r],
b(n) = n + [n*r/s] + [n*t/s],
c(n) = n + [n*r/t] + [n*s/t], where []=floor.
Taking r=1, s=sin(Pi/5), t=cos(Pi/5) gives a=A189926, b=A189927, c=A189928.
sin(Pi/5)=sqrt((5-sqrt(5))/8); cos(Pi/5)=(1+sqrt(5))/4.
LINKS
FORMULA
A189926: a(n) = n + [n*sin(Pi/5)] + [n*cos(Pi/5)].
A189927: b(n) = n + [n*csc(Pi/5)] + [n*cot(Pi/5)].
A189928: c(n) = n + [n*sec(Pi/5)] + [n*tan(Pi/5)].
MATHEMATICA
r=1; s=Sin[Pi/5]; t=Cos[Pi/5];
a[n_] := n + Floor[n*s/r] + Floor[n*t/r];
b[n_] := n + Floor[n*r/s] + Floor[n*t/s];
c[n_] := n + Floor[n*r/t] + Floor[n*s/t];
Table[a[n], {n, 1, 120}] (*A189926*)
Table[b[n], {n, 1, 120}] (*A189927*)
Table[c[n], {n, 1, 120}] (*A189928*)
PROG
(PARI) for(n=1, 100, print1(n + floor(n*sin(Pi/5)) + floor(n*cos(Pi/5)), ", ")) \\ G. C. Greubel, Jan 13 2018
(Magma) C<i> := ComplexField(); [n + Floor(n*Sin(Pi(C)/5)) + Floor(n*Cos(Pi(C)/5)): n in [1..100]]; // G. C. Greubel, Jan 13 2018
CROSSREFS
Sequence in context: A160531 A190348 A189363 * A060106 A186222 A184814
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 01 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 14:50 EDT 2024. Contains 371792 sequences. (Running on oeis4.)