OFFSET
1,2
COMMENTS
The only composite in this sequence is a(2) = 91 = 7*13. All other a(n) are equal to 1 (for n = 1,7,8,11,15,17,18,20,26,27,28,29,33,35,36,37,39,...) or primes from A090865. Each prime from A090865 (excluding 7 and 13) appears only once in {a(n)}. The primes in {a(n)} also appear to form a subset of A103203.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
FORMULA
a(n) = denominator(BernoulliB(4*prime(n)))/30.
MATHEMATICA
Table[Denominator[BernoulliB[4Prime[n]]]/30, {n, 1, 80}]
PROG
(PARI) {a(n) = denominator(bernfrac(4*prime(n)))/30};
vector(80, n, a(n)) \\ G. C. Greubel and Michel Marcus, Feb 10 2019
(Magma) [Denominator(Bernoulli(4*NthPrime(n)))/30: n in [1..80]]; // G. C. Greubel, Feb 10 2019
(Sage) [denominator(bernoulli(4*nth_prime(n)))/30 for n in (1..80)] # G. C. Greubel, Feb 10 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Jul 28 2006
STATUS
approved