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!)
A244556 Primes p that do not remain prime if their last digit is replaced by its square. 1

%I #21 Sep 08 2022 08:46:08

%S 2,3,5,7,43,59,67,79,97,109,113,137,163,167,179,199,227,269,283,293,

%T 313,317,337,349,367,379,397,409,419,439,463,479,487,499,523,557,569,

%U 607,617,619,643,673,677,683,709,719,727,739,743,773,787

%N Primes p that do not remain prime if their last digit is replaced by its square.

%H Vincenzo Librandi, <a href="/A244556/b244556.txt">Table of n, a(n) for n = 1..10000</a>

%e 59 is in the sequence because 9^2 = 81 and 581 is not prime.

%e 727 is in the sequence because 7^2 = 49 and 7249 is not prime.

%t selQ[p_]:=(id=IntegerDigits[p]; id1=Most[id]; id2=Last[id]^2//IntegerDigits; p2=Join[id1, id2]//FromDigits; !PrimeQ[p2]); Select[Array[Prime, 100], selQ] (* see _Jean-François Alcover_ in A244555 *)

%o (Magma) r:=func<i | Seqint(Intseq(Intseq(i)[1]^2) cat Intseq(Floor(i/10)))>; [p: p in PrimesUpTo(800) | not IsPrime(r(p))]; // _Bruno Berselli_, Jul 04 2014

%Y Cf. A244555.

%K nonn,base

%O 1,1

%A _Vincenzo Librandi_, Jul 02 2014

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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)