OFFSET
0,1
COMMENTS
All terms are multiples of 6.
The first differences are 60, 48, 48, 5304, -4440, ... Apparently (checked for the first 700 entries) these are multiples of 12.
MAPLE
C:=proc(n) if n=0 then RETURN(1); fi; if n mod 2 = 0 then RETURN(bernoulli(n)+bernoulli(n-1)); else RETURN(-bernoulli(n)-bernoulli(n-1)); fi; end:
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul Curtz, Dec 18 2008
EXTENSIONS
Extended by R. J. Mathar, Sep 07 2009
STATUS
approved