login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A324276
Bi-unitary untouchable numbers: numbers that are not the sum of aliquot bi-unitary divisors of any number.
5
2, 3, 4, 5, 38, 68, 80, 96, 98, 128, 138, 146, 158, 164, 180, 188, 192, 206, 208, 210, 212, 222, 224, 248, 264, 278, 290, 300, 304, 308, 324, 326, 328, 338, 360, 374, 380, 390, 398, 416, 418, 420, 430, 432, 458, 476, 480, 488, 498, 516, 518, 530, 536, 542, 548
OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..3591 (terms below 30000)
MATHEMATICA
fun[p_, e_] := If[OddQ[e], (p^(e+1)-1)/(p-1), (p^(e+1)-1)/(p-1)-p^(e/2)]; bsigma[1] = 1; bsigma[n_] := bsigma[n] = Times @@ (fun @@@ FactorInteger[n]); untouchableQ[n_] := Catch[ Do[ If[n == bsigma[k]-k, Throw[True]], {k, 0, (n-1)^2}]] === Null; Reap[ Table[ If[ untouchableQ[n], Sow[n]], {n, 2, 550}]][[2, 1]] (* after Jean-François Alcover at A005114 *)
CROSSREFS
Cf. A188999, A005114, A063948 (unitary), A324277 (infinitary), A324278 (exponential), A331970.
Sequence in context: A171578 A044907 A252079 * A324277 A261247 A153719
KEYWORD
nonn
AUTHOR
Amiram Eldar, Feb 20 2019
STATUS
approved