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!)
A272349 Least multiple of n whose sum of divisors is divisible by n. 3
1, 6, 6, 12, 40, 6, 28, 56, 90, 40, 473, 24, 117, 28, 120, 336, 1139, 90, 703, 120, 420, 946, 3151, 120, 3725, 234, 918, 28, 5017, 120, 496, 672, 891, 2176, 2660, 792, 2701, 1406, 234, 120, 6683, 420, 11051, 1892, 270, 6302, 13207, 528, 2548, 3800, 3417, 2340 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
See A227470(n) for the sequence a(n)/n. If n = prime(i) is a prime then A097018 gives the answer: a(n) = n*A097018(i). One can show that a(n) always exists - see A227470 for the proof. - N. J. A. Sloane, May 01 2016
LINKS
FORMULA
a(n) = n*A227470(n). - R. J. Mathar, May 02 2016
EXAMPLE
For n = 2, a(2) = 6 because it is the smallest number divisible by 2 whose sum of divisors (12) is also divisible by 2; 3 and 5 are not divisible by 2 and the sum of divisors of 2 and 4 is 3 and 7, hence also not divisible by 2.
MAPLE
A272349 := proc(n)
local k;
for k from 1 do
if modp(numtheory[sigma](k*n), n) =0 then
return k*n;
end if;
end do:
end proc: # R. J. Mathar, May 02 2016
MATHEMATICA
A272349 = {}; Do[k = n; While[!(Divisible[k, n] && Divisible[DivisorSigma[1, k], n]), k++]; AppendTo[A272349, k], {n, 65}]; A272349
PROG
(PARI) for(n=1, 65, k=n; while(!(k%n==0&&sigma(k)%n==0), k++); print1(k ", "))
(PARI) a(n)=my(k=n); while(sigma(k)%n, k+=n); k \\ Charles R Greathouse IV, Apr 28 2016
CROSSREFS
Cf. A000203, A097018 (if n is a prime), A227470.
Sequence in context: A160729 A315801 A352135 * A262850 A262849 A115014
KEYWORD
nonn
AUTHOR
Waldemar Puszkarz, Apr 26 2016
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 April 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)