login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A276224
Position of n^e in the joint ranking of {h^e} and {k^Pi}, h > 1, k > 1.
2
1, 3, 5, 7, 8, 10, 12, 13, 15, 16, 18, 20, 21, 23, 25, 26, 28, 29, 31, 32, 34, 36, 37, 39, 40, 42, 43, 45, 46, 48, 50, 51, 53, 54, 56, 57, 59, 60, 62, 63, 65, 66, 68, 69, 71, 72, 74, 76, 77, 79, 80, 82, 83, 85, 86, 88, 89, 91, 92, 94, 95, 97, 98, 100, 101
OFFSET
1,2
LINKS
FORMULA
a(n) = n + floor(n^(e/Pi)); the complement is given by n + floor(n^(Pi/e)).
EXAMPLE
The first numbers in the joint ranking are
2^e < 2^Pi < 3^e < 3^Pi < 4^e < 4^Pi , so that a(n) = (1,3,5,...).
MATHEMATICA
z = 150; r = N[E, 100]; s = N[Pi, 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}]] (* A276223 *)
Flatten[Table[Position[w, v[[n]]], {n, 1, z}]] (* A276224 *)
CROSSREFS
Cf. A276223 (complement).
Sequence in context: A221056 A377436 A288467 * A186342 A186315 A285074
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Sep 06 2016
STATUS
approved