A338473 Numbers that can be written as the sum of two brilliant numbers (A078972).
8, 10, 12, 13, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 34, 35, 36, 39, 40, 41, 42, 44, 45, 46, 49, 50, 53, 55, 56, 58, 59, 60, 63, 64, 70, 74, 84, 98, 125, 127, 130, 131, 135, 136, 142, 146, 147, 149, 152, 153, 156, 157, 158, 164, 168, 170
Offset: 1
Examples
8 = 4 + 4 = A078972(1) + A078972(1), so 8 is a term. 10 = 4 + 6 = A078972(1) + A078972(2), so 10 is a term. 15 = 6 + 9 = A078972(2) + A078972(3), so 15 is a term.
Programs
-
Magma
f:=Factorization; br:=func
; [k:k in [4..200]|exists(i){m:m in [4..k-4]|br(m) and br(k-m)}]; -
Mathematica
m = 200; brils = Select[Range[m], (f = FactorInteger[#])[[;; , 2]] == {2} || f[[;; , 2]] == {1, 1} && Equal @@ IntegerLength@f[[;; , 1]] &]; Select[Range[m], Length[IntegerPartitions[#, {2}, brils]] > 0 &] (* Amiram Eldar, Dec 06 2020 *)
Comments