A241601 Largest divisor of A246006(n) whose prime factors are all >= n+2.
1, 1, 1, 1, 1, 1, 1, 61, 1, 277, 1, 50521, 691, 41581, 1, 199360981, 3617, 228135437, 43867, 2404879675441, 174611, 14814847529501, 77683, 69348874393137901, 236364091, 238685140977801337, 657931, 4087072509293123892361, 3392780147, 454540704683713199807
Offset: 0
Keywords
Programs
-
Mathematica
b[n_] := Numerator[BernoulliB[2 n]/(2 n)]; c[n_] := Numerator[SeriesCoefficient[Log[Tan[x]+1/Cos[x]], {x, 0, 2n+1}]]; a[0] = 1; a[n_] := If[EvenQ[n], b[n/2] // Abs, c[(n-1)/2]]; Table[a[n], {n, 0, 29}] (* Jean-François Alcover, Jul 03 2019 *)
Comments