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!)
A201739 Numbers n such that 90*n + 29 is prime. 18
0, 4, 5, 6, 7, 9, 10, 11, 12, 14, 17, 23, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 41, 44, 45, 47, 48, 53, 54, 61, 65, 70, 73, 74, 75, 76, 77, 80, 83, 84, 88, 89, 91, 96, 98, 100, 102, 105, 108, 109, 110, 114, 117, 119, 125, 126, 128, 132, 136, 139, 142, 143 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This sequence was generated by adding 12 Fibonacci-like sequences. Looking at the format 90n+29 modulo 9 and modulo 10 we see that all entries of A142327 have digital root 2 and last digit 9. (Reverting the process is an application of the Chinese remainder theorem.)
LINKS
FORMULA
a(n) = (A142327(n) - 29)/90.
MAPLE
for n from 0 to 240 do
p := 90*n+29 ;
if isprime(p) then
printf("%d, ", n) ;
end if;
end do: # R. J. Mathar, Dec 05 2011
MATHEMATICA
Select[Range[0, 400], PrimeQ[90 #+29]&] (* Vincenzo Librandi, Dec 11 2011 *)
PROG
(PARI) forstep(n=29, 1e4, 90, if(isprime(n), print1(n\90", "))) \\ Charles R Greathouse IV, Dec 05 2011
(Magma) [n: n in [0..200] | IsPrime(90*n+29)]; // Vincenzo Librandi, Dec 11 2011
CROSSREFS
Sequence in context: A068318 A347932 A242337 * A329782 A218044 A066485
KEYWORD
nonn,easy
AUTHOR
J. W. Helkenberg, Dec 04 2011
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 July 22 15:12 EDT 2024. Contains 374503 sequences. (Running on oeis4.)