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!)
A276212 Position of n^r in the joint ranking of {h^r} and {k^s}, where r = sqrt(2), s = sqrt(5), h > 1, k > 1. 2
1, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79 (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 < 5^r < 3^s < 6^r < 7^r < 8^r < 4^s < 9^r, so that a(n) = (1,3,4,5,7,...).
MATHEMATICA
z = 150; r = N[Sqrt[2], 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}]] (* A276211 *)
Flatten[Table[Position[w, v[[n]]], {n, 1, z}]] (* A276212 *)
CROSSREFS
Cf. A276211 (complement).
Sequence in context: A194413 A183574 A184425 * A137905 A285958 A179779
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 August 21 19:45 EDT 2024. Contains 375353 sequences. (Running on oeis4.)