This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A332775 #56 Dec 20 2024 03:54:40 %S A332775 1,3,5,5,9,9,13,9,11,15,21,15,25,21,21,17,33,21,37,25,29,33,45,27,29, %T A332775 39,29,35,57,37,61,33,45,51,45,39,73,57,53,45,81,51,85,55,51,69,93,51, %U A332775 55,55,69,65,105,57,69,63,77,87,117,67,121,93,71,65,81,79,133,85,93,81,141 %N A332775 a(n) = n + sopf(n) - omega(n). %C A332775 From _Bernard Schott_, Jun 10 2020: (Start) %C A332775 All terms are odd, but not all odd integers are obtained: see A353046. %C A332775 1 <= a(n) <= 2n-1 (see formula). (End) %F A332775 a(n) = Sum_{k=1..n} k^(c(k)*(1 - ceiling(n/k) + floor(n/k))), where c is the prime characteristic (A010051). %F A332775 a(n) = n + A055631(n). %F A332775 From _Bernard Schott_, Jun 10 2020: (Start) %F A332775 a(n) = 1 iff n = 1. %F A332775 a(n) = 2*n-1 iff n is prime. %F A332775 a(p^k) = p^k + p - 1 for p prime, k > 0. (End) %t A332775 Table[n - PrimeNu[n] + Sum[p, {p, Select[Divisors[n], PrimeQ]}], {n, 100}] %o A332775 (PARI) a(n) = n + vecsum(factor(n)[, 1]) - omega(n); \\ _Michel Marcus_, Jul 21 2020 %Y A332775 Cf. A001221 (omega), A008472 (sopf), A010051, A055631, A353046. %K A332775 nonn,easy %O A332775 1,2 %A A332775 _Wesley Ivan Hurt_, Jun 08 2020