login
The OEIS is supported bythe many generous donors to the OEIS Foundation.

Logo
Hints
(Greetings fromThe On-Line Encyclopedia of Integer Sequences!)
A109612 Numbers n such that the string 44n is prime. 1
3, 9, 21, 23, 41, 47, 51, 57, 63, 81, 83, 93, 101, 111, 119, 123, 129, 131, 159, 171, 179, 189, 201, 203, 207, 221, 249, 257, 263, 267, 269, 273, 279, 281, 293, 351, 357, 371, 381, 383, 389, 417, 449, 453, 483, 491, 497, 501, 507, 519, 531, 533, 537, 543, 549 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
If n=3 then 44n = 443 which is a prime.
If n=81 then 44n = 4481 which is a prime.
MAPLE
a:= proc(n) local k; for k from 1 +`if`(n=1, 0, a(n-1))
while not isprime(parse( "" ||44||k)) do od; a(n):=k
end:
seq(a(n), n=1..100); #Alois P. Heinz,Jul 30 2014
MATHEMATICA
Select[Range[700], PrimeQ[44 10^IntegerLength[#] + #] &] (*Vincenzo Librandi,Jul 30 2014 *)
PROG
(Magma) [n: n in [1..600] | IsPrime(Seqint(Intseq(n) cat [4, 4])) ]; //Vincenzo Librandi,Jul 30 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
More terms fromVincenzo Librandi,Mar 27 2010
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 byThe OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 4 19:25 EDT 2024. Contains 375685 sequences. (Running on oeis4.)