OFFSET
1,4
COMMENTS
Empirical: a(2*n) = [x^n] x*(2/(x - 1)^2 - 1) for n >= 1, implying the conjecture that a(2*n) = A103517(n+1) and/or A272651(n).
Conjectural, the odd fixed points > 1 of this sequence are A121707; in other words, for n > 1, denominator(n*Bernoulli(n-1)) = denominator(Bernoulli(n-1)) <=> n | Sum_{k=1..n-1} k^(n-1). (See the conjectures of Thomas Ordowski in A121707.)
LINKS
Michel Marcus, Table of n, a(n) for n = 1..10000
FORMULA
a(prime(n)) = 1.
a(n) = n/gcd(n*N(n-1), D(n-1)), with N(k)/D(k) = B(k) the k-th Bernoulli number.
MAPLE
A326478 := n -> n*denom(n*bernoulli(n-1))/denom(bernoulli(n-1)):
db := n -> denom(bernoulli(n)): nb := n -> numer(bernoulli(n)):
a := n -> n/igcd(n*nb(n-1), db(n-1)): seq(a(n), n=1..73);
MATHEMATICA
a[n_] := Module[{b = BernoulliB[n - 1]}, n * Denominator[n * b] / Denominator[b]]; Array[a, 100] (* Amiram Eldar, Apr 26 2024 *)
PROG
(PARI) a(n) = n*denominator(n*bernfrac(n-1))/denominator(bernfrac(n-1)); \\ Michel Marcus, Jul 17 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Jul 16 2019
STATUS
approved