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!)
A349546 Composite numbers k such that k+1 is divisible by (k+1 mod A001414(k)) and k-1 is divisible by (k-1 mod A001414(k)). 1
4, 8, 20, 32, 50, 55, 64, 77, 80, 98, 110, 115, 125, 128, 152, 170, 216, 242, 243, 256, 275, 290, 329, 338, 341, 343, 364, 371, 416, 506, 511, 512, 544, 551, 578, 583, 611, 638, 663, 722, 729, 731, 741, 851, 870, 920, 987, 1024, 1025, 1054, 1058, 1079, 1144, 1219, 1243, 1298, 1325, 1331, 1421 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(3) = 20 is a term because A001414(20) = 2+2+5 = 9, 20+1 = 21 is divisible by 21 mod 9 = 3, and 20-1 = 19 is divisible by 19 mod 9 = 1.
MAPLE
filter:= proc(n) local s, t, r, q;
if isprime(n) then return false fi;
s:= add(t[1]*t[2], t = ifactors(n)[2]);
r:= (n+1) mod s;
q:= (n-1) mod s;
r<> 0 and q <> 0 and (n+1) mod r = 0 and (n-1) mod q = 0
end proc:
select(filter, [$4..2000]);
CROSSREFS
Cf. A001414.
Includes all members of A079704 except 18.
Sequence in context: A084922 A180794 A047185 * A034733 A365964 A152233
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Nov 21 2021
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)