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!)
A190079 n + [n*s/r] + [n*t/r]; r=1, s=cos(Pi/5), t=sec(Pi/5). 3
2, 5, 8, 11, 15, 17, 20, 23, 27, 30, 32, 35, 39, 42, 45, 47, 51, 54, 57, 60, 62, 66, 69, 72, 75, 79, 81, 84, 87, 91, 94, 96, 99, 103, 106, 109, 111, 114, 118, 121, 124, 126, 130, 133, 136, 139, 143, 145, 148, 151, 155, 158, 160, 163, 166, 170, 173, 175, 178, 182, 185, 188, 190, 194, 197, 200, 203, 207, 209, 212, 215, 218, 222 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
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=cos(Pi/5), t=sec(Pi/5) gives
LINKS
FORMULA
A190079: a(n) = n + [n*cos(Pi/5)] + [n*sec(Pi/5)].
A190080: b(n) = n + [n*sec(Pi/5)] + [n*(sec(Pi/5))^2].
A190081: c(n) = n + [n*cos(Pi/5)] + [n*(cos(Pi/5))^2].
MATHEMATICA
r=1; s=Cos[Pi/5]; t=Sec[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}] (*A190079*)
Table[b[n], {n, 1, 120}] (*A190080*)
Table[c[n], {n, 1, 120}] (*A190081*)
PROG
(PARI) for(n=1, 100, print1(n + floor(n*cos(Pi/5)) + floor(n/cos(Pi/5)), ", ")) \\ G. C. Greubel, Feb 15 2018
(Magma) R:= RealField(); [n + Floor(n*Cos(Pi(R)/5)) + Floor(n/Cos(Pi(R)/5)): n in [1..100]]; // G. C. Greubel, Feb 15 2018
CROSSREFS
Sequence in context: A353985 A118518 A329604 * A184872 A163249 A295624
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 04 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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)