|
Search: id:A090744
|
|
|
| A090744 |
|
Consider numbers of the form ...53197531975319753, whose digits read from the right are 3,5,7,9,1,3,5,7,9,1,3,... Sequence gives lengths of these numbers which are primes. |
|
+0 2
|
| |
|
|
OFFSET
|
0,2
|
|
|
EXAMPLE
|
a(1)=1 because 3 is prime and 3 has 1 digit.
a(2)=2 because 53 is prime and 53 has 2 digits
a(3)=5 because 19753 is prime and 19753 has 5 digits
|
|
MATHEMATICA
|
s = 0; Do[s = s + 10^n*Switch[ Mod[n, 5], 4, 1, 0, 3, 1, 5, 2, 7, 3, 9]; If[ PrimeQ[s], Print[n + 1]], {n, 0, 3000}] (from Robert G. Wilson v Feb 19 2004)
|
|
PROGRAM
|
(PARI) test3(n)= s=0; for(i=0, n, \ if(Mod(i, 5)==0, s=s+3*10^i, \ if(Mod(i, 5)==1, s=s+5*10^i, \ if(Mod(i, 5)==2, s=s+7*10^i, \ if(Mod(i, 5)==3, s=s+9*10^i, \ if(Mod(i, 5)==4, s=s+1*10^i, \ )))))); return(s); for(j=0, 1000, if(isprime(test3(j)), print(j+1), print1(".")))
|
|
CROSSREFS
|
Sequence in context: A003095 A023362 A138613 this_sequence A041571 A042259 A100105
Adjacent sequences: A090741 A090742 A090743 this_sequence A090745 A090746 A090747
|
|
KEYWORD
|
hard,nonn,base,more
|
|
AUTHOR
|
mohammed bouayoun (bouyao(AT)wanadoo.fr), Feb 03 2004
|
|
EXTENSIONS
|
1932 from Robert G. Wilson v (rgwv(AT)rgwv.com), Feb 10 2004
|
|
|
Search completed in 0.002 seconds
|