A212443 a(n) = (1/n) * Sum_{d|n} moebius(n/d) * A002203(d)^2, where A002203 is the companion Pell numbers.
4, 16, 64, 280, 1344, 6496, 32640, 166320, 862400, 4523232, 23970240, 128063040, 689008320, 3728973120, 20285199872, 110841302880, 608029121280, 3346972244000, 18480871268160, 102328688556864, 568014587806720, 3160148362953120, 17617881702072960
Offset: 1
Keywords
Programs
-
Mathematica
a[n_] := DivisorSum[n, MoebiusMu[n/#] * LucasL[#, 2]^2 &] / n; Array[a, 25] (* Amiram Eldar, Aug 22 2023 *)
-
PARI
{A002203(n)=polcoeff(2*x*(1+x)/(1-2*x-x^2+x*O(x^n)),n)} {a(n)=if(n<1, 0, sumdiv(n, d, moebius(n/d)*A002203(d)^2)/n)} for(n=1,30,print1(a(n),","))