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

A157800
Denominator of Bernoulli(n, 1/3).
5
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,2
LINKS
MATHEMATICA
Denominator[BernoulliB[Range[0, 30], 1/3]] (* Harvey P. Dale, Nov 17 2012 *)
PROG
(Python)
from sympy import bernoulli, Integer
def a(n): return bernoulli(n, 1/Integer(3)).denominator() # Indranil Ghosh, May 01 2017
(PARI) a(n) = my(x=1/3); denominator(eval(bernpol(n))); \\ Ruud H.G. van Tol, May 10 2024
CROSSREFS
For numerators see A157799.
Sequence in context: A028558 A337324 A140450 * A355228 A352061 A225110
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Nov 08 2009
STATUS
approved