cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A336701 Numbers k for which A000265(1+A000265(sigma(k))) is equal to A000265(1+k).

Original entry on oeis.org

1, 3, 7, 15, 31, 127, 1023, 8191, 34335, 57855, 131071, 524287, 2147483647
Offset: 1

Views

Author

Antti Karttunen, Aug 02 2020

Keywords

Comments

Numbers k such that A336698(k) [= A000265(1+A161942(k))] is equal to A000265(1+k).
Numbers k such that A337194(k) = 2^e * A000265(1+k), for some e >= 1, where that e = A337195(k).
Any odd perfect number would trivially satisfy this condition.
Also, all hypothetical quasiperfect numbers, numbers k that satisfy sigma(k) = 2k+1, would be members.
Question: Is A066175 a subsequence of this sequence?
From Antti Karttunen, Aug 23 2020: (Start)
Numbers k such that (1+k) = 2^e * A336698(k), for some e >= 0.
Thus numbers k such that for some e >= 0, (1+k) = 2^(e-A337195(k)) * A337194(k), or equally, that A337194(k) = 2^(A337195(k)-e) * (1+k).
Conjecture: There are no even terms. This is equivalent to claim that there are no k such that A336698(k) = 1+k: If we assume that k is even, then in above equations we set e=0, and the requirement will then become that A337194(k) = 2^A337195(k)*(1+k), thus 1+k = A336698(k) = A000265(1+A000265(sigma(k))).
(End)

Crossrefs

Subsequence of A336700.
Cf. A000668 (a subsequence).
See also comments in A326042, A332223.

Programs

  • Mathematica
    Block[{f}, f[n_] := n/2^IntegerExponent[n, 2]; Select[Range[2^20], f[1 + f[DivisorSigma[1, #]]] == f[1 + #] &] ] (* Michael De Vlieger, Aug 22 2020 *)
  • PARI
    A000265(n)  = (n>>valuation(n,2));
    isA336701(n) = (A000265(1+A000265(sigma(n))) == A000265(1+n));