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!)
A081756 Numbers n such that there is a proper divisor d of n satisfying sigma(d)=n. 5
1, 12, 56, 360, 992, 2016, 16256, 120960, 131040, 1571328, 8714160, 67100672, 94279680, 182131200, 571963392, 1379454720, 4428914688, 5517818880, 17179738112, 70912195200, 153003540480, 159991977600, 175445913600, 265734881280, 274877382656, 612014161920 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A139256 is a subsequence. - Michel Marcus, Dec 02 2013
LINKS
Ray Chandler, Table of n, a(n) for n = 1..1000 (using comment in formula section from David Wasserman and b-files for A007691 and A054030)
FORMULA
Multiply A007691 by A054030 and sort the resulting sequence. - David Wasserman, Jun 28 2004
MATHEMATICA
kmax = 10^12;
A007691 = Cases[Import["https://oeis.org/A007691/b007691.txt", "Table"], {_, _}][[All, 2]];
A054030 = Cases[Import["https://oeis.org/A054030/b054030.txt", "Table"], {_, _}][[All, 2]];
okQ[n_] := AnyTrue[Most[Divisors[n]], DivisorSigma[1, #] == n&];
{1}~Join~Reap[Do[k = A007691[[i]]*A054030[[j]]; If[k <= kmax, Sow[k]], {i, Length[A007691]}, {j, Length[A054030]}]][[2, 1]] // Union // Select[#, okQ]& (* Jean-François Alcover, Oct 31 2019, after David Wasserman *)
CROSSREFS
Sequence in context: A068418 A068414 A199316 * A307741 A027147 A095724
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Apr 08 2003
EXTENSIONS
More terms from David Wasserman, Jun 28 2004
Description clarified by Ray Chandler, May 18 2017
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 19 02:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)