login
This site is supported by donations to The OEIS Foundation.

 

Logo

Annual appeal: Please make a donation to keep the OEIS running! Over 6000 articles have referenced us, often saying "we discovered this result with the help of the OEIS".

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A046841 Sum of divisors divides sum of cubes of divisors. 3
1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 46, 47, 48, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

LINKS

Paolo P. Lava, Table of n, a(n) for n = 1..1000

EXAMPLE

x=208. The power sums of divisors for k=0,1,2,3 are as follows: 10,434,54970,10288838; sigma(1,208)=434 divides sigma(4,208)= 234*23707.

MAPLE

with(numtheory);

List046841:=proc(q) local a, b, k, n;

for n from 1 to q do

  a:=divisors(n); b:=add(a[k]^3, k=1..nops(a));

  if type(b/sigma(n), integer) then print(n); fi;

od; end:

List046841(10^6); # Paolo P. Lava, Apr 10 2013

MATHEMATICA

Select[Range@ 85, Divisible[DivisorSigma[3, #], DivisorSigma[1, #]] &] (* Michael De Vlieger, Aug 01 2017 *)

PROG

(PARI) isA046841(n)=sigma(n, 3)%sigma(n, 1)==0 \\ Michael B. Porter, Apr 07 2010

CROSSREFS

Cf. A000203, A001158.

Cf. A003601, A020486.

Sequence in context: A175084 A171519 A072099 * A244218 A164514 A000037

Adjacent sequences:  A046838 A046839 A046840 * A046842 A046843 A046844

KEYWORD

nonn

AUTHOR

Labos Elemer

STATUS

approved

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

License Agreements, Terms of Use, Privacy Policy .

Last modified November 8 22:38 EST 2017. Contains 294414 sequences.