A072337 Inverse EULER transform of A064831 (with its initial 1 omitted).
1, 3, 3, 5, 10, 24, 50, 120, 270, 640, 1500, 3600, 8610, 20880, 50700, 124024, 304290, 750120, 1854400, 4600200, 11440548, 28527320, 71289000, 178526880, 447910470, 1125750120, 2833885800, 7144449920, 18036373140, 45591631800, 115381697740, 292329067800
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..1000
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Algebra and its Applications, Vol. 226-228 (1995), 57-72.
- A. Connes and M. Dubois-Violette, Yang-Mills Algebra, arXiv:math/0206205 [math.QA], 2002.
- Herscovich, Estanislao, and Solotar, Andrea, Representations of Yang-Mills algebras, Ann. of Math. (2) 173 (2011), no. 2, 1043-1080. - From _N. J. A. Sloane_, Jan 02 2013
- N. J. A. Sloane, Transforms
Programs
-
Mathematica
mob[m_, n_] := If[Mod[m, n] == 0, MoebiusMu[m/n], 0]; EULERi[b_] := Module[{a, c, i, d}, c = {}; For[i = 1, i <= Length[b], i++, c = Append[c, i*b[[i]] - Sum[c[[d]]*b[[i - d]], {d, 1, i - 1}]]]; a = {}; For[i = 1, i <= Length[b], i++, a = Append[a, (1/i)*Sum[mob[i, d]*c[[d]], {d, 1, i}]]]; Return[a]]; Join[{1}, EULERi[LinearRecurrence[{3, 0, -3, 1}, {3, 9, 24, 64}, 31]]] (* Jean-François Alcover, Aug 19 2018 *)
Formula
G.f.: 1 + Sum_{s>=1} (mu(s)/s)*log B(x^s), where B(x) = 1/((1-x^2) * (1-3*x+x^2)). - Petros Hadjicostas, Dec 03 2017
a(n) ~ ((1 + sqrt(5))/2)^(2*n) / n. - Vaclav Kotesovec, Aug 19 2018
Comments