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 A028236 #25 Sep 29 2023 04:04:20 %S A028236 1,1,1,1,1,5,1,1,1,7,1,7,1,9,8,1,1,11,1,9,10,13,1,11,1,15,1,11,1,31,1, %T A028236 1,14,19,12,13,1,21,16,13,1,41,1,15,14,25,1,19,1,27,20,17,1,29,16,15, %U A028236 22,31,1,47,1,33,16,1,18,61,1,21,26,59,1,17,1,39,28,23,18,71,1,21,1,43 %N A028236 If n = Product (p_j^k_j), a(n) = numerator of Sum 1/p_j^k_j. %H A028236 Klaus Brockhaus, <a href="/A028236/b028236.txt">Table of n, a(n) for n = 1..10000</a> %F A028236 Fraction is additive with a(p^e) = 1/p^e. %F A028236 a(n) = Sum_{k=1..A001221(n)} n/A141809(n,k). - _Reinhard Zumkeller_, Nov 10 2013 %F A028236 Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k)/k = Sum_{p prime} 1/(p*(p+1)) = 0.330229... (A179119). - _Amiram Eldar_, Sep 29 2023 %e A028236 Fractions begin with 1, 1/2, 1/3, 1/4, 1/5, 5/6, 1/7, 1/8, 1/9, 7/10, 1/11, 7/12, ... %t A028236 a[n_] := n * Total[1/Power @@@ FactorInteger[n]]; Array[a, 100] (* _Amiram Eldar_, Sep 29 2023 *) %o A028236 (Magma) a028236:=func< k | k eq 1 select 1 else Numerator(&+[ f[i, 1]^-f[i,2]: i in [1..#f] ]) where f is Factorization(k) >; [ a028236(n):n in [1..82] ]; // _Klaus Brockhaus_, Nov 06 2010 %o A028236 (Haskell) %o A028236 a028236 n = sum $ map (div n) $ a141809_row n %o A028236 -- _Reinhard Zumkeller_, Nov 10 2013 %Y A028236 Denominator is n (A000027). %Y A028236 Cf. A001221, A141809, A179119. %K A028236 nonn,easy,frac %O A028236 1,6 %A A028236 _N. J. A. Sloane_ %E A028236 More terms from _Erich Friedman_