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!)
A295654 Numbers k such that tau(k) +- 1 is congruent to 0 (mod k), where tau is the Ramanujan tau function (A000594). 1
1, 11, 23, 691, 5807, 85583, 189751, 37264081 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Compare with A063938.
a(9) > 8*10^7. - Seiichi Manyama, Jan 01 2018
LINKS
Eric Weisstein's World of Mathematics, Tau Function.
FORMULA
A273650(a(n)) is 1 or n - 1.
EXAMPLE
tau(11) = 534612 and 11 | (534612 - 1).
tau(23) = 18643272 and 23 | (18643272 - 1).
tau(691) = -2747313442193908 and 691 | (-2747313442193908 - 1).
tau(5807) = 237456233554906855056 and 5807 | (237456233554906855056 + 1).
tau(85583) = 90954516543892718450139576 and 85583 | (90954516543892718450139576 - 1).
tau(189751) = 4685230754227867924094547904 and 189751 | (4685230754227867924094547904 + 1).
tau(37264081) = 831105005803795341334403814220760726696052 and 37264081 | (831105005803795341334403814220760726696052 - 1).
MATHEMATICA
fQ[n_] := Block[{t = RamanujanTau@n}, Mod[t, n] == 1 || Mod[t, n] + 1 == n]; (* Robert G. Wilson v, Nov 25 2017 *)
PROG
(Python)
from itertools import count, islice
from sympy import divisor_sigma
def A295654_gen(startvalue=1): # generator of terms >= startvalue
return filter(lambda n: n==1 or abs(-840*(pow(m:=n+1>>1, 2, n)*(0 if n&1 else pow(m*divisor_sigma(m), 2, n))+(sum(pow(i, 4, n)*divisor_sigma(i)*divisor_sigma(n-i) for i in range(1, m))<<1)) % n)==1, count(max(startvalue, 1)))
A295654_list = list(islice(A295654_gen(), 4)) # Chai Wah Wu, Nov 08 2022
CROSSREFS
Sequence in context: A041240 A193855 A295645 * A247347 A045498 A159511
KEYWORD
nonn,more
AUTHOR
Seiichi Manyama, Nov 25 2017
EXTENSIONS
a(8) from Seiichi Manyama, Jan 01 2018
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 19 07:38 EDT 2024. Contains 371782 sequences. (Running on oeis4.)