|
|
A265913
|
|
Values of Ramanujan's tau function that are prime.
|
|
2
|
|
|
-80561663527802406257321747, -11695495424911987900947041440697, -261735233712444492786795215139587, -686681472061569603985711525865543, -8467957012200178807169459266490129, -205501290141049152491380112020976837, 4705942878159923138262416607648599521
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
COMMENTS
|
Here, negative integers whose absolute value is prime are considered prime.
|
|
LINKS
|
|
|
FORMULA
|
|
|
EXAMPLE
|
A135430(1) = 63001, and tau(63001) = -80561663527802406257321747, so a(1) = -80561663527802406257321747.
|
|
PROG
|
(PARI) for (x=0, 1000, n=(2*x+1)^2; a=ramanujantau(n); if(isprime(abs(a)), print1(a", "))) \\ Dana Jacobsen, Dec 30 2015
(Perl) use ntheory ":all"; for (0..1000) { my $n = (2*$_+1)**2; my $a = ramanujan_tau($n); say $a if is_prime(abs($a)); } # Dana Jacobsen, Dec 30 2015
|
|
CROSSREFS
|
Cf. A135430 (values of n for which tau(n) is prime).
Cf. A000594 (Ramanujan's tau function tau(n)).
|
|
KEYWORD
|
sign
|
|
AUTHOR
|
|
|
STATUS
|
approved
|
|
|
|