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!)
A276214 Position of n^r in the joint ranking of {h^r} and {k^s}, where r = sqrt(3), s = sqrt(5), h > 1, k > 1. 2
1, 3, 4, 6, 8, 9, 11, 12, 13, 15, 16, 18, 19, 21, 22, 23, 25, 26, 28, 29, 30, 32, 33, 35, 36, 37, 39, 40, 41, 43, 44, 46, 47, 48, 50, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 70, 71, 72, 73, 75, 76, 77, 79, 80, 81, 83, 84, 85, 87, 88, 89, 90 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = n + floor(n^(r/s)); the complement is given by n + floor(n^(s/r)).
EXAMPLE
The first numbers in the joint ranking are
2^r < 2^s < 3^r < 4^r < 3^s < 5^r < 4^s < 6^r, so that a(n) = (1,3,4,6,8,...).
MATHEMATICA
z = 150; r = N[Sqrt[3], 100]; s = N[Sqrt[5], 100];
u = Table[n + Floor[n^(s/r)], {n, 2, z}];
v = Table[n + Floor[n^(r/s)], {n, 2, z^(s/r)}];
w = Union[u, v];
Flatten[Table[Position[w, u[[n]]], {n, 1, z}]] (* A276213 *)
Flatten[Table[Position[w, v[[n]]], {n, 1, z}]] (* A276214 *)
CROSSREFS
Cf. A276213 (complement).
Sequence in context: A291322 A322741 A161579 * A285206 A047416 A064724
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Sep 01 2016
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 02:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)