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!)
A364498 Odd numbers k such that k divides A243071(k). 6
1, 3, 43, 1177, 3503, 49477, 169413, 428015, 4394113, 33228911 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Primes p present are those that occur as factors of (2^A000720(p))-1: 3, 43, 49477, 4394113, 33228911, ...
LINKS
EXAMPLE
1177 = 11 * 107, with A243071(1177) = 536870895 = 3*5*11*47*107*647, therefore 1177 is present. Note that 536870895 = 11111111111111111111111101111 in binary, with four 1-bits at the least significant end, followed by 0, and then 24 more 1-bits at the most significant end, so A163511(536870895) = A000040(1+4) * A000040(4+24) = 11 * 107.
PROG
(PARI)
A054429(n) = ((3<<#binary(n\2))-n-1); \\ From A054429
A156552(n) = { my(f = factor(n), p, p2 = 1, res = 0); for(i = 1, #f~, p = 1 << (primepi(f[i, 1]) - 1); res += (p * p2 * (2^(f[i, 2]) - 1)); p2 <<= f[i, 2]); res };
A243071(n) = if(n<=2, n-1, A054429(A156552(n)));
isA364498(n) = ((n%2)&&!(A243071(n)%n));
CROSSREFS
Odd terms in A364497.
Sequence in context: A302218 A302664 A201784 * A340822 A355004 A303159
KEYWORD
nonn,more
AUTHOR
Antti Karttunen, Jul 27 2023
EXTENSIONS
a(10) from Chai Wah Wu, Jul 27 2023
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 28 22:13 EDT 2024. Contains 372921 sequences. (Running on oeis4.)