A189731 a(n) = numerator of B(0,n) where B(n,n) = 0, B(n-1,n) = 1/n, and B(m,n) = B(m-1,n+1) - B(m-1,n).
0, 1, 1, 3, 2, 17, 4, 23, 25, 61, 18, 107, 40, 421, 1363, 1103, 210, 5777, 492, 7563, 24475, 19801, 2786, 103681, 33552, 135721, 146401, 355323, 39650, 1860497, 97108, 2435423, 2627065, 6376021, 20633238, 11128427, 1459960, 43701901
Offset: 0
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..1000
Programs
-
Maple
B:= proc(m, n) option remember; if m=n then 0 elif n=m+1 then 1/n elif n>m then B(m, n-1) +B(m+1, n-1) else B(m-1, n+1) -B(m-1, n) fi end: a:= n-> numer(B(0, n)): seq(a(n), n=0..50); # Alois P. Heinz, Apr 29 2011
-
Mathematica
Rest[Numerator[Abs[CoefficientList[Normal[Series[Log[1 - x^2/(1 + x)], {x, 0, 40}]], x]]]] (* Vaclav Kotesovec, Jul 07 2020 *) Table[Numerator[(LucasL[n]-1)/n],{n,1,38}] (* Artur Jasinski, Oct 21 2022 *)
Formula
Numerator of (A000204(n) - 1)/n. - Artur Jasinski, Oct 21 2022
Comments