login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A365089 The Thue-Morse sequence along the sequence of cubes. 1
0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0
COMMENTS
The set of n such that a(n)=0 has asymptotic density 1/2.
LINKS
Lukas Spiegelhofer, Thue-Morse along the sequence of cubes, arXiv:2308.09498 [math.NT], 2023.
FORMULA
a(n) = A010060(n^3).
MATHEMATICA
Table[ThueMorse[n^3], {n, 0, 100}] (* Amiram Eldar, Aug 21 2023 *)
PROG
(Sage) def a(n): return sum((n^3).digits(2))%2
(Python)
def A365089(n): return (n**3).bit_count()&1 # Chai Wah Wu, Aug 22 2023
CROSSREFS
Sequence in context: A219189 A029691 A209229 * A295890 A342704 A284622
KEYWORD
easy,nonn
AUTHOR
Lukas Spiegelhofer, Aug 21 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 1 12:46 EDT 2024. Contains 372170 sequences. (Running on oeis4.)