login
A292657
Rank of n when all the numbers h, j*cos(1), k*sin(1), for h>=1, j>=1, k>=1, are jointly ranked.
3
3, 7, 11, 15, 19, 24, 27, 31, 35, 39, 44, 48, 52, 55, 59, 64, 68, 72, 76, 80, 83, 88, 92, 96, 100, 104, 108, 112, 116, 120, 124, 129, 133, 136, 140, 144, 148, 153, 157, 161, 164, 168, 173, 177, 181, 185, 188, 193, 197, 201, 205, 209, 213, 217, 221, 225, 229
OFFSET
1,1
COMMENTS
This sequence together with A292658 and A292658 partition the set of positive integers.
LINKS
MATHEMATICA
z = 120; r = 1; s = Cos[1]; t = Sin[1];
Table[n + Floor[n*r/s] + Floor[n*r/t], {n, 1, z}] (* A292657 *)
Table[n + Floor[n*s/r] + Floor[n*s/t], {n, 1, z}] (* A292658 *)
Table[n + Floor[n*t/r] + Floor[n*t/s], {n, 1, z}] (* A292659 *)
CROSSREFS
Sequence in context: A369056 A079422 A310210 * A277675 A220496 A194442
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Sep 28 2017
STATUS
approved