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”).

A330143
Beatty sequence for (3/2)^x, where (2/3)^x + (2/5)^x = 1.
3
1, 3, 4, 6, 7, 9, 10, 12, 14, 15, 17, 18, 20, 21, 23, 25, 26, 28, 29, 31, 32, 34, 36, 37, 39, 40, 42, 43, 45, 47, 48, 50, 51, 53, 54, 56, 58, 59, 61, 62, 64, 65, 67, 68, 70, 72, 73, 75, 76, 78, 79, 81, 83, 84, 86, 87, 89, 90, 92, 94, 95, 97, 98, 100, 101
OFFSET
1,2
COMMENTS
Let x be the solution of (2/3)^x + (2/5)^x = 1. Then (floor(n*(3/2)^x)) and (floor(n*(5/2)^x)) are a pair of Beatty sequences; i.e., every positive integer is in exactly one of the sequences. See the Guide to related sequences at A329825.
FORMULA
a(n) = floor(n*(3/2)^x), where x = 1.108702608375893... is the constant in A330142.
MATHEMATICA
r = x /.FindRoot[(2/3)^x + (2/5)^x == 1, {x, 1, 2}, WorkingPrecision -> 200]
RealDigits[r] (* A330142 *)
Table[Floor[n*(3/2)^r], {n, 1, 250}] (* A330143 *)
Table[Floor[n*(5/2)^r], {n, 1, 250}] (* A330144 *)
CROSSREFS
Cf. A329825, A330142, A330144 (complement).
Sequence in context: A330113 A329923 A187342 * A140758 A292987 A352719
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jan 04 2020
STATUS
approved