A134670 First position k such that A046694(k) = A046694(k+1) =.. 0 are n consecutive zeros starting with A046694(k), where A046694 = Ramanujan tau numbers mod 691.
1381, 16581, 290217, 1409635, 1118176194, 107792931954, 673751534392, 2587409974788
Offset: 1
Examples
a(1) = 1381 because A046694(1381) = 0 is the first zero in A046694(n). a(2) = 16581 because A046694(16581) = A046694(16582) = 0 are the first two consecutive zeros in A046694(n).
Links
- Eric Weisstein's World of Mathematics, Ramanujan's Tau Function
Programs
-
Maple
A134670 := proc(n) option remember; if n = 1 then 1381 ; else for a from procname(n-1)+1 do wrks := true; for k from a to a+n-1 do if A046694(k) <> 0 then wrks := false ; break; end if; end do: if wrks then return a; end if; end do: end if; end proc: # R. J. Mathar, Feb 01 2013
Extensions
a(5) confirmed by Jud McCranie Oct 17 2020
a(6) by Jud McCranie Oct 17 2020
a(7) by Jud McCranie Oct 19 2020
a(8) by Jud McCranie Oct 22 2020
Comments