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”).

A145834
a(n) = difference between the n-th composite number and the sum of its prime factors with repetition.
4
0, 1, 2, 3, 3, 5, 5, 7, 8, 10, 11, 11, 9, 15, 15, 11, 18, 17, 20, 22, 19, 15, 23, 26, 17, 23, 29, 30, 29, 34, 21, 37, 35, 38, 31, 35, 43, 39, 43, 35, 27, 48, 29, 50, 52, 47, 50, 47, 43, 56, 60, 35, 62, 53, 59, 60, 67, 69, 39, 70, 63, 41, 55, 71, 77, 71, 65, 59, 45, 71, 83, 82, 82
OFFSET
1,3
LINKS
FORMULA
a(n) = A075255(A002808(n)) = A002808(n) - A001414(A002808(n)).
EXAMPLE
a(1) = 4 - (2+2) = 0; a(2) = 6 - (2+3) = 1; a(3) = 8 - (2+2+2) = 2 ; a(4) = 9 - (3+3) = 3; a(5) = 10 - (2+5) = 3.
MATHEMATICA
cnpf[n_]:=n-Total[Flatten[Table[#[[1]], #[[2]]]&/@FactorInteger[n]]]; cnpf/@ Select[Range[100], CompositeQ] (* Harvey P. Dale, Aug 31 2021 *)
PROG
(PARI) A145834(n)={for(k=0, primepi(n), isprime(n++)&k--); n+0-sum(i=1, #n=factor(n)~, n[1, i]*n[2, i])} \\ M. F. Hasler, Oct 31 2008
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Edited and extended by Ray Chandler, Oct 24 2008
STATUS
approved