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!)
A069056 Numbers k such that Sum_{d|k} d^2*mu(d) divides k^2. 1
1, 12, 24, 36, 48, 72, 96, 108, 120, 144, 192, 216, 240, 288, 324, 336, 360, 384, 432, 480, 576, 600, 648, 672, 720, 768, 864, 960, 972, 1008, 1080, 1152, 1200, 1296, 1344, 1440, 1536, 1728, 1800, 1920, 1944, 2016, 2160, 2304, 2352, 2400, 2448, 2592, 2688 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If n > 1, a(n+1) - a(n) == 0 (mod 12), so a(n+1) - a(n) = 12 for n=2,3,4,5,7,8,...; a(n+1) - a(n) = 24 for n=6,9,.... Conjecture: if c > 2 and n > 1, Sum_{d|n} d^c*mu(d) never divides n^c. Hence A063453(n) never divides n^3 for n > 1.
LINKS
FORMULA
Numbers k such that A046970(k) divides k.
MATHEMATICA
f[d_] := d^2*MoebiusMu[d]; ok[n_] := Divisible[n^2, Total[f /@ Divisors[n]]]; Select[Range[3000], ok] (* Jean-François Alcover, Nov 15 2011 *)
PROG
(PARI) for(n=1, 1000, if(n^2%sumdiv(n, d, moebius(d)*d^2)==0, print1(n, ", ")))
(Haskell)
a069056 n = a069056_list !! (n-1)
a069056_list = filter (\x -> x ^ 2 `mod` a046970 x == 0) [1..]
-- Reinhard Zumkeller, Jan 19 2012
CROSSREFS
Sequence in context: A141766 A364710 A367338 * A359434 A358693 A371413
KEYWORD
easy,nice,nonn
AUTHOR
Benoit Cloitre, Apr 07 2002
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 July 8 02:28 EDT 2024. Contains 374149 sequences. (Running on oeis4.)