A295591 Numbers k such that Bernoulli number B_{k} has denominator 61410.
88, 968, 5192, 5368, 13816, 15928, 19624, 19976, 22616, 23144, 23848, 24904, 27368, 27544, 27896, 29656, 31064, 33704, 34936, 38632, 40216, 40568, 40744, 45848, 46024, 48136, 49544, 50248, 51656, 53416, 56584, 56936, 57112, 59048, 60808, 61688, 67672, 68024, 71368
Offset: 1
Examples
Bernoulli B_{88} is -1311426488674017507995511424019311843345750275572028644296919890574047/61410 hence 88 is in the sequence.
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Maple
with(numtheory): P:=proc(q, h) local n; for n from 2 by 2 to q do if denom(bernoulli(n))=h then print(n); fi; od; end: P(10^6, 61410); # Alternative: # according to Robert Israel code in A282773 with(numtheory): filter:= n -> select(isprime, map(`+`, divisors(n), 1)) = {2, 3, 5, 23, 89}: select(filter, [seq(i, i=1..10^5)]);
-
PARI
isok(n) = denominator(bernfrac(n)) == 61410; \\ Michel Marcus, Jan 07 2018
Comments