login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A295591 Numbers k such that Bernoulli number B_{k} has denominator 61410. 1
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
61410 = 2*3*5*23*89.
All terms are multiples of a(1) = 88.
For these numbers numerator(B_{k}) mod denominator(B_{k}) = 56003.
LINKS
EXAMPLE
Bernoulli B_{88} is -1311426488674017507995511424019311843345750275572028644296919890574047/61410 hence 88 is in the sequence.
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)]);
PROG
(PARI) isok(n) = denominator(bernfrac(n)) == 61410; \\ Michel Marcus, Jan 07 2018
CROSSREFS
Sequence in context: A055749 A227479 A321061 * A182676 A228744 A249294
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Nov 24 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 13:58 EDT 2024. Contains 371960 sequences. (Running on oeis4.)