OFFSET
1,1
COMMENTS
Observation of some pseudoperfect numbers with an attribute similar to multiperfect numbers.
A total of 84 of the 96 terms (representing all terms less than 10^7) are equal to 0 (mod 13338).
Many of the terms greater than (13338*239)-1 are in the form of 13338*p where p>=239. Prime(52)*1338 through Prime(50188)*1338 were tested and are all terms in this sequence.
There are numbers greater than (13338*239)-1 in this sequence that do not have 13338 as a divisor, for example; 3277800, 3387240, 5007222 and 9233154.
(Uni-)Perfect numbers cannot be in this sequence.
EXAMPLE
The proper divisors of 12978 are (1, 2, 3, 6, 7, 9, 14, 18, 21, 42, 63, 103, 126, 206, 309, 618, 721, 927, 1442, 1854, 2163, 4326, 6489).
The contiguous divisor lists of (3+6+7+9+14+18+21+42+63+103+126+206+309+618+721+927+1442+1854+2163+4326) and (2163+4326+6489) equals 12978.
MATHEMATICA
pspQ[n_] := Module[{d = Divisors[n]}, c = Accumulate[d]; Length @ Intersection[c, c + n] > 2]; Select[Range[10^6], pspQ] (* Amiram Eldar, Jul 02 2020 *)
PROG
(Python)
# Pseudoperfect (or semiperfect) numbers having more than one set of contiguous proper divisors whose sum equals n.
import sympy
A335742_list = []
for n in range(1, (10**7)+1):
# create an ascending list of divisors of n.
n_divs = list(sympy.divisors(n))
# pop last divisor, which equals n, so only proper divisors are examined.
n_divs.pop()
# reset iterator for sets of contiguous proper divisors whose sum equals n.
itr = 0
# run the outer loop for each proper divisor of n.
for i in range(len(n_divs)+1):
# run the inner loop for each divisor >= i.
for j in range(i, len(n_divs)+1):
# if sum of divisors i:j is greater than n; continue to next n.
if sum(n_divs[i:j]) > n:
continue
# elif sum of divisors i:j equals n; increment itr; if itr > 1; append n to sequence.
elif sum(n_divs[i:j]) == n:
itr += 1
if itr > 1:
A335742_list.append(n)
CROSSREFS
KEYWORD
nonn
AUTHOR
Matthew Schuster, Jul 02 2020
STATUS
approved