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!)
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
Sequence in context: A291898 A330987 A365919 * A032668 A050839 A032640
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Aug 30 2005
EXTENSIONS
More terms from Vincenzo 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 by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 28 11:36 EDT 2024. Contains 372056 sequences. (Running on oeis4.)