OFFSET
1,1
COMMENTS
Differs from A054088 at indices 56, 71, 112, 127, 142, 168, 183 etc. - R. J. Mathar, Oct 05 2008
Let r = gamma (the Euler constant, 0.5772...). When {k*r, k >= 1} is jointly ranked with the positive integers, A059555(n) is the position of n and A059556(n) is the position of n*r. - Clark Kimberling, Oct 21 2014
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..2000
Aviezri S. Fraenkel, Jonathan Levitt, Michael Shimshoni, Characterization of the set of values f(n)=[n alpha], n=1,2,..., Discrete Math. 2 (1972), no.4, 335-345.
Eric Weisstein's World of Mathematics, Beatty Sequence.
MATHEMATICA
t = N[Table[k*EulerGamma, {k, 1, 200}]]; u = Union[Range[200], t]
Flatten[Table[Flatten[Position[u, n]], {n, 1, 100}]] (* A059556 *)
Flatten[Table[Flatten[Position[u, t[[n]]]], {n, 1, 100}]] (* A059555 *)
(* Clark Kimberling, Oct 21 2014 *)
PROG
(PARI) { default(realprecision, 100); b=1 + 1/Euler; for (n = 1, 2000, write("b059556.txt", n, " ", floor(n*b)); ) } \\ Harry J. Smith, Jun 28 2009
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mitch Harris, Jan 22 2001
STATUS
approved