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”).

A047681
a(n) = 3^(2*n)*(3^(2*n)-1)*Bernoulli(2*n)/(2*n).
2
6, -54, 2106, -179334, 26414586, -5957217414, 1906398972666, -821369346492294, 458382160232420346, -321645776191296739974, 277173760840187306341626, -287758284647458145849816454, 354245505704926834826124160506, -510230879113388713374134585497734
OFFSET
1,1
REFERENCES
J. W. Milnor and J. D. Stasheff, Characteristic Classes, Princeton, 1974, p. 283.
MATHEMATICA
Table[3^(2 n) (3^(2 n) - 1) BernoulliB[2 n] / (2 n), {n, 25}] (* Vincenzo Librandi, Apr 08 2020 *)
PROG
(PARI) a(n) = 3^(2*n)*(3^(2*n)-1)*bernfrac(2*n)/(2*n); \\ Michel Marcus, Mar 07 2020
(Magma) [3^(2*n)*(3^(2*n) - 1)*Bernoulli(2*n) / (2*n):n in [1..30]]; // Vincenzo Librandi, Apr 08 2020
CROSSREFS
Sequence in context: A171681 A267837 A049037 * A075575 A073655 A119222
KEYWORD
sign
STATUS
approved