OFFSET
1,1
COMMENTS
All terms are of the form 5 + 10*j. In most cases, a(n+1) - a(n) = 10, but there are some jumps; e.g., a(18) - a(17) = 185 - 165 = 20 (see Examples).
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 1..4473
Vaclav Kotesovec, Graph of a(n)/n. Limit of a(n)/n (if it exists) is not 10, but ~11.18...
EXAMPLE
k=7: B(14)=7/6, B(12)=-691/2730, so gcd(N(14),D(12)) = gcd(7,2730) = 7; thus, k=7 is not in the sequence.
k=15: B(30)=8615841276005/14322, B(28)=-23749461029/870, so gcd(N(30),D(28)) = gcd(8615841276005,870) = 5; thus, k=15 is in the sequence.
k=175: N(350) is a large multiple of 35, D(348)=56213430, and gcd(N(350),D(348)) = 35; thus, k=175 is not in the sequence.
MATHEMATICA
Select[10Range[0, 60] + 5, GCD[Numerator[BernoulliB[2#]], Denominator[BernoulliB[2# - 2]]] == 5 &] (* Harvey P. Dale, Apr 08 2013 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre and Labos Elemer, Mar 21 2002
STATUS
approved