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 A219224 #17 Nov 21 2022 10:52:35 %S A219224 1,0,2,3,3,11,10,26,32,51,90,117,198,283,417,610,890,1284,1848,2615, %T A219224 3716,5217,7289,10222,14158,19514,26882,36805,50131,68428,92466, %U A219224 125128,168093,225775,302171,402876,536730,711601,942009,1243513,1638395,2152828,2823004 %N A219224 G.f.: exp( Sum_{n>=1} A005063(n)*x^n/n ), where A005063(n) = sum of squares of primes dividing n. %C A219224 Euler transform of A061397. - _Peter Luschny_, Nov 21 2022 %H A219224 Paul D. Hanna, <a href="/A219224/b219224.txt">Table of n, a(n) for n = 0..1000</a> %e A219224 G.f.: A(x) = 1 + 2*x^2 + 3*x^3 + 3*x^4 + 11*x^5 + 10*x^6 + 26*x^7 + 32*x^8 +... %e A219224 where %e A219224 log(A(x)) = 4*x^2/2 + 9*x^3/3 + 4*x^4/4 + 25*x^5/5 + 13*x^6/6 + 49*x^7/7 + 4*x^8/8 + 9*x^9/9 + 29*x^10/10 + 121*x^11/11 + 13*x^12/12 + 169*x^13/13 + 53*x^14/14 + 34*x^15/15 +...+ A005063(n)*x^n/n +... %p A219224 # The function EulerTransform is defined in A358369. %p A219224 a := EulerTransform(n -> ifelse(isprime(n), n, 0)): %p A219224 seq(a(n), n = 0..42); # _Peter Luschny_, Nov 21 2022 %t A219224 a[n_] := SeriesCoefficient[ Exp[ Sum[ DivisorSum[k, Boole[PrimeQ[#]] * #^2&] * x^k/k, {k, 1, n+1}]], {x, 0, n}]; Table[a[n], {n, 0, 42}] (* _Jean-François Alcover_, Jul 11 2017, from PARI *) %o A219224 (PARI) {a(n)=polcoeff(exp(sum(k=1,n+1,sumdiv(k,d,isprime(d)*d^2)*x^k/k)+x*O(x^n)),n)} %o A219224 for(n=0,50,print1(a(n),", ")) %Y A219224 Cf. A000607, A005063, A220427, A061397. %K A219224 nonn %O A219224 0,3 %A A219224 _Paul D. Hanna_, Nov 15 2012