OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
List the factors of n with multiplicity to see if their sum divides the following number n+1.
EXAMPLE
90=2*3*3*5 with sum 2+3+3+5=13, 7*13=91, so 90 is in the sequence.
MATHEMATICA
Select[Range[2, 10000], IntegerQ[(# + 1)/Sum[FactorInteger[ # ][[i, 1]] *FactorInteger[ # ][[i, 2]], {i, 1, Length[FactorInteger[ # ]]}]] &] (* Stefan Steinerberger, Jul 26 2007 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
J. M. Bergot, Jul 24 2007
EXTENSIONS
Corrected and extended by Stefan Steinerberger, Jul 26 2007
STATUS
approved