login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A262939
Quadrisection of A262940: a(n) = A262940(4*n+1) for n>=0.
2
1, 3, -21, -255, -478677, -7152407, 1291535081, 21021866227, -8367123104756933, -125486744208053623, 22639240870533272321, 368298497943774746859, 1120119534438107659394201, 17585651607496479804464699, -4001938301481614696345053989, -68798954684172515260606005119, -1021530045274545215678840405648561149029, -15322943216340426957307389817178091600759, 2767316465763270287090903125069152428833649, 45031940338831118856335051343515754947640891
OFFSET
0,2
COMMENTS
a(n) = -A262940(4*n-1) for n>=1.
LINKS
PROG
(PARI) {a(n) = local(A=[1, 1]); for(k=3, 4*n+2, A=concat(A, 0); m=2^valuation(k, 2); A[k] = 1 - Vec(Ser(A)^m)[k]/m ); A[4*n+2]}
for(n=0, 32, print1(a(n), ", "))
CROSSREFS
Cf. A262940.
Sequence in context: A197716 A336638 A317059 * A232470 A349961 A251573
KEYWORD
sign
AUTHOR
Paul D. Hanna, Oct 04 2015
STATUS
approved