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!)
A276215 Position of n^s in the joint ranking of {h^r} and {k^s}, where r = sqrt(2), s = sqrt(6), h > 1, k > 1. 2
3, 7, 13, 19, 26, 34, 42, 51, 61, 72, 83, 95, 108, 121, 135, 150, 165, 181, 197, 214, 231, 249, 267, 286, 306, 326, 347, 368, 389, 411, 434, 457, 481, 505, 530, 555, 580, 606, 633, 660, 687, 715, 744, 773, 802, 832, 862, 893, 924, 955, 988, 1020, 1053, 1086 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = n + floor(n^(s/r)); the complement is given by n + floor(n^(r/s)).
EXAMPLE
The first numbers in the joint ranking are
2^r < 3^r < 2^s < 4^r < 5^r < 6^r < 3^s, so that a(n) = (3,7,...).
MATHEMATICA
z = 150; r = N[Sqrt[2], 100]; s = N[Sqrt[6], 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}]] (* A276215 *)
Flatten[Table[Position[w, v[[n]]], {n, 1, z}]] (* A276216 *)
CROSSREFS
Cf. A276216 (complement).
Sequence in context: A278448 A117679 A310265 * A202117 A100458 A193765
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 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)