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!)
A341321 Composite numbers k that are divisible by (k mod sopfr(k))+sopfr(k), where sopfr = A001414. 1
4, 6, 8, 9, 10, 12, 14, 15, 16, 22, 26, 27, 30, 34, 38, 46, 58, 60, 62, 64, 70, 72, 74, 82, 84, 86, 94, 105, 106, 118, 122, 126, 128, 134, 140, 142, 144, 146, 150, 158, 166, 168, 178, 180, 194, 202, 206, 214, 218, 220, 226, 231, 240, 254, 256, 262, 264, 270, 274, 278, 280, 286, 288, 298, 302, 308 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(3) = 8 is a term because 8 is composite, sopfr(8) = 3*2 = 6, 8 mod 6 = 2, and 8 is divisible by 2+6.
MAPLE
filter:= proc(n) local s, m, t;
if isprime(n) then return false fi;
s:= add(t[1]*t[2], t=ifactors(n)[2]);
m:= n mod s;
n mod (m+s) = 0
end proc:
select(filter, [$4..10000]);
MATHEMATICA
sopfr[n_] := Total[Times @@@ FactorInteger[n]];
okQ[n_] := CompositeQ[n] && With[{s = sopfr[n]}, Divisible[n, Mod[n, s]+s]];
Select[Range[4, 1000], okQ] (* Jean-François Alcover, Nov 08 2023 *)
CROSSREFS
Includes A100484.
Cf. A001414.
Sequence in context: A117098 A077136 A098216 * A063806 A323521 A063989
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Feb 08 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 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)