Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #4 Sep 28 2017 08:34:27
%S 3,8,13,17,22,27,32,35,40,45,49,54,59,64,67,72,77,81,86,91,96,100,104,
%T 109,113,118,123,128,132,136,141,145,150,155,160,164,169,173,178,182,
%U 187,192,196,201,205,210,214,219,224,228,233,237,242,246,251,256
%N Rank of n*e when all the numbers h, j*e, k*Pi, for h>=1, j>=1, k>=1, are jointly ranked. T
%C This sequence and A292654 and A292656 partition the set of positive integers.
%H Clark Kimberling, <a href="/A292655/b292655.txt">Table of n, a(n) for n = 1..1000</a>
%t z = 120; r = 1; s = E; t = Pi;
%t Table[n + Floor[n*r/s] + Floor[n*r/t], {n, 1, z}] (* A292654 *)
%t Table[n + Floor[n*s/r] + Floor[n*s/t], {n, 1, z}] (* A292655 *)
%t Table[n + Floor[n*t/r] + Floor[n*t/s], {n, 1, z}] (* A292656 *)
%Y Cf. A292654, A292656.
%K nonn,easy
%O 1,1
%A _Clark Kimberling_, Sep 27 2017