A329654 a(n) = numerator(b(n)), where b(0) = b(1) = 1 and b(n) = n*b(n-1)/b(n-2) for n >= 1.
1, 1, 2, 6, 12, 10, 5, 7, 28, 72, 180, 275, 55, 91, 2548, 252, 3600, 18700, 187, 1729, 12103, 5880, 13200, 473110, 4301, 247, 786695, 171990, 16632, 5488076, 124729, 38285, 27871480, 550368, 3110184, 23324323, 56695, 1416545, 559818584, 3236688, 2073456, 4781486215, 2324495, 937099, 12036099556
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[Numerator@b[j], {j, 0, 2^5}]
Formula
a(n) = numerator(b(n)), where b(0) = b(1) = 1 and b(n) = n!/Product_{j=1..n-2} a(j), for n > 1.
Comments