The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A212443 a(n) = (1/n) * Sum_{d|n} moebius(n/d) * A002203(d)^2, where A002203 is the companion Pell numbers. 1
4, 16, 64, 280, 1344, 6496, 32640, 166320, 862400, 4523232, 23970240, 128063040, 689008320, 3728973120, 20285199872, 110841302880, 608029121280, 3346972244000, 18480871268160, 102328688556864, 568014587806720, 3160148362953120, 17617881702072960 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
G.f.: 1/Product_{n>=1} (1 - A002203(n)*x^n + (-1)^n*x^(2*n))^a(n) = exp(Sum_{n>=1} A002203(n)^3 * x^n/n), which equals the g.f. of A212442.
MATHEMATICA
a[n_] := DivisorSum[n, MoebiusMu[n/#] * LucasL[#, 2]^2 &] / n; Array[a, 25] (* Amiram Eldar, Aug 22 2023 *)
PROG
(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), ", "))
CROSSREFS
Sequence in context: A071357 A142872 A113995 * A294036 A097679 A158778
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 17 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 17:27 EDT 2024. Contains 372554 sequences. (Running on oeis4.)