OFFSET
1,5
COMMENTS
a(n) is the trivial factor of the numerator of Bernoulli(2n) that divides 2n.
The remaining part of the (unsigned) numerator equals a product of powers of irregular primes, or 1 if and only if n = 1, 2, 3, 4, 5, 7.
Alternatively, a(n) is the product over all prime powers p^e, where p^e is the highest power of p dividing 2n and p-1 does not divide 2n.
LINKS
Jeppe Stig Nielsen, Table of n, a(n) for n = 1..10000
Bernd C. Kellner, On irregular prime power divisors of the Bernoulli numbers, Math. Comp. 76 (2007) 405-441.
FORMULA
a(n) = numerator(Bernoulli(2n))/numerator(Bernoulli(2n)/(2n)).
a(n) * A195989(n) = n. - Peter Luschny, Mar 12 2018
From Jianing Song, Apr 05 2021: (Start)
a(n) = gcd(numerator(Bernoulli(2n)), 2n).
EXAMPLE
a(5) = 5, since Bernoulli(10) = 5/66 and Bernoulli(10)/10 = 1/132.
MAPLE
A300711 := proc(n) local P, F, f, divides; divides := (a, b) -> is(irem(b, a) = 0):
P := 1; F := ifactors(2*n)[2]; for f in F do if not divides(f[1]-1, 2*n) then
P := P*f[1]^f[2] fi od; P end: seq(A300711(n), n=1..74); # Peter Luschny, Mar 12 2018
MATHEMATICA
Table[Numerator[BernoulliB[n]]/Numerator[BernoulliB[n]/n], {n, 2, 100, 2}]
PROG
(Julia)
using Nemo
function A300711(n)
b = bernoulli(n)
div(numerator(b), numerator(b*QQ(1, n)))
end
[A300711(n) for n in 2:2:148] |> println # Peter Luschny, Mar 11 2018
(PARI) a(n) = gcd(numerator(bernfrac(2*n)), 2*n) \\ Jianing Song, Apr 05 2021
(PARI) upto(N)=bernvec(N); forstep(n=2, 2*N, 2, print1(gcd(numerator(bernfrac(n)), n), ", ")) \\ Jeppe Stig Nielsen, Jun 22 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Bernd C. Kellner, Mar 11 2018
STATUS
approved