OFFSET
1,1
COMMENTS
Any sequence of 4 or more consecutive numbers with the same value for mu must all have mu(n)=0 (n divisible by a proper square) since at least one of every 4 consecutive numbers is divisible by 4.
A261890(a(n)) = 0. - Reinhard Zumkeller, Sep 05 2015
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
mu(n)=1 for 33,34,35; 85,86,87; 93,94,95; ...
mu(n)=-1 for 29,30,31; 41,42,43; 101,102,103; ...
mu(n)=0 for 48,49,50; 98,99,100; 124,125,126; ...
MATHEMATICA
SequencePosition[MoebiusMu[Range[1200]], {x_, x_, x_}][[;; , 1]] (* Harvey P. Dale, Jul 23 2023 *)
PROG
(Haskell)
a114180 n = a114180_list !! (n-1)
a114180_list = filter ((== 0) . a261890) [1..]
-- Reinhard Zumkeller, Sep 05 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Franklin T. Adams-Watters, Feb 03 2006
STATUS
approved