cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A346463 a(n) = 6 * GaussBinomial(2*n, 2, 2) / denominator(Bernoulli(2*n, 1)).

Original entry on oeis.org

0, 1, 7, 93, 2159, 15841, 6141, 44731051, 8421119, 86113647, 3331843885, 127479517837, 103104368637, 750599904340651, 82824819807611, 80500035008073, 36170086393773823, 49191317521302203051, 2460603943675971, 12592977287514948283051, 89351501819019263845
Offset: 0

Views

Author

Peter Luschny, Jul 19 2021

Keywords

Crossrefs

Programs

  • Maple
    a := n -> (4^n - 2)*(4^n - 1) / mul(i, i=select(isprime, map(i->i+1, numtheory[divisors] (2*n)))): seq(a(n), n = 0..20);
  • Mathematica
    Table[6 QBinomial[2 n, 2, 2] / Denominator[BernoulliB[2 n, 1]], {n, 0, 20}]

Formula

a(n) = (4^n - 2)*(4^n - 1)/Clausen(2*n, 1), where Clausen(n, k) = A160014(n, k).