A329813 a(n) = denominator(b(n)), where b(0) = b(1) = 1 and b(n) = n*b(n-1)/b(n-2) for n >= 1.
1, 1, 1, 1, 1, 1, 1, 2, 5, 5, 7, 14, 6, 15, 275, 11, 91, 637, 14, 200, 935, 187, 247, 12103, 245, 22, 47311, 4301, 247, 112385, 5733, 2772, 1372019, 11339, 38285, 398164, 2184, 86394, 23324323, 56695, 21793, 69977323, 77064, 49368, 434680565, 464899, 937099, 6018049778, 635778, 2128995, 93977938153
Offset: 0
Programs
-
Mathematica
b[0]=1; b[1]=1; b[n_]:=b[n]=n*b[n-1]/b[n-2] (* Table[b[j], {j, 1, 2^10}]//ListPlot *) Table[Denominator@b[j], {j, 0, 2^5}]
Formula
a(n) = denominator(b(n)), where b(0) = b(1) = 1 and b(n) = n!/Product_{j=1..n-2} a(j), for n > 1.
Comments