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.

A157800 Denominator of Bernoulli(n, 1/3).

Original entry on oeis.org

1, 6, 18, 27, 810, 243, 10206, 2187, 65610, 19683, 1299078, 177147, 483611310, 1594323, 9565938, 14348907, 7317942570, 129140163, 103053850074, 1162261467, 383546284110, 10460353203, 1443528742014, 94143178827, 257010878197710
Offset: 0

Views

Author

N. J. A. Sloane, Nov 08 2009

Keywords

Crossrefs

For numerators see A157799.

Programs

  • Mathematica
    Denominator[BernoulliB[Range[0,30],1/3]] (* Harvey P. Dale, Nov 17 2012 *)
  • PARI
    a(n) = my(x=1/3); denominator(eval(bernpol(n))); \\ Ruud H.G. van Tol, May 10 2024
  • Python
    from sympy import bernoulli, Integer
    def a(n): return bernoulli(n, 1/Integer(3)).denominator # Indranil Ghosh, May 01 2017