The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A305617 Deficient 2-hyperperfect numbers: numbers n such that 3n/2 + 1/2 - sigma(n) is a proper divisor of n. 1
3, 9, 27, 35, 39, 55, 81, 243, 279, 387, 715, 729, 1443, 2187, 2619, 3655, 5635, 6561, 10855, 12635, 19683, 59049, 77283, 177147, 178119, 294759, 443135, 531441, 817167, 1170723, 1594323, 1605987, 1632231, 1710963, 1947159, 2410239, 2624375, 2655747, 3944255 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Includes all the powers of 3 (A000244).
A combination of the notions 2-hyperperfect numbers (A007593) and deficient-perfect numbers (A271816).
LINKS
Bhabesh Das and Helen K. Saikia, Identities for Near and Deficient Hyperperfect Numbers, Indian Journal in Number Theory, Vol. 3 (2016), pp. 124-134, alternative link.
EXAMPLE
35 is in the sequence since sigma(35) = 48 and 3*35/2 + 1/2 - 48 = 5 is a proper divisor of 35.
MATHEMATICA
aQ[n_]:=Module[{d = 3n/2+1/2-DivisorSigma[1, n]}, d>0 && d!=n && IntegerQ[d] && Divisible[n, d]]; Select[Range[2, 1000000], aQ]
PROG
(PARI) isok(n) = (n % 2) && (k = (3*n+1)/2 - sigma(n)) && !(n % k) && (k != n); \\ Michel Marcus, Jun 07 2018
CROSSREFS
Sequence in context: A057238 A070364 A070363 * A292390 A211219 A248959
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jun 06 2018
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 May 27 06:20 EDT 2024. Contains 372848 sequences. (Running on oeis4.)