The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A007513 a(n) = initial prime of n consecutive primes such that first and last have same digit sum.
(Formerly M2186)
2

%I M2186 #27 Feb 27 2023 13:35:05

%S 2,523,109,79,2,13,5,127,47,17,5,127,53,17,7,67,31,37,47,37,83,11,43,

%T 19,157,2,37,5,47,5,19,67,7,29,19,53,31,73,53,29,139,13,67,83,7,47,29,

%U 17,79,7,19,37,59,43,271,19,29,181,167,59,97,5,149,7,59,337,41,53,43,127

%N a(n) = initial prime of n consecutive primes such that first and last have same digit sum.

%D J. R. Smart, A new function from a table of primes, J. Rec. Math., 7 (No. 4, 1974), 293-294.

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H Reinhard Zumkeller, <a href="/A007513/b007513.txt">Table of n, a(n) for n = 1..10000</a>

%H J. R. Smart, <a href="/A007513/a007513.pdf">A new function from a table of primes</a>, J. Recreational Mathematics 7.4 (1974), 293-294. (Annotated scanned copy)

%e 523 and 541 are first pair of consecutive primes with same sum of digits (10).

%p A007953 := proc(n) local d; add(d,d=convert(n,base,10)) ; end proc: A007605 := proc(n) A007953(ithprime(n)) ; end proc: A007513 := proc(n) for i from 1 do if A007605(i) = A007605(i+n-1) then return ithprime(i) ; end if; end do ; end proc: seq(A007513(n),n=1..120) ; # _R. J. Mathar_, Dec 09 2009

%t prms=Prime[Range[2000]];First/@Table[First[Select[Partition[prms,n,1], Total[ IntegerDigits[ First[#]]]==Total[IntegerDigits[Last[#]]]&]], {n,75}] (* _Harvey P. Dale_, May 20 2011 *)

%o (Haskell)

%o import Data.Function (on)

%o import Data.List (elemIndex)

%o import Data.Maybe (fromJust)

%o a007513 n = a000040_list !! (fromJust $ elemIndex 0 $

%o zipWith ((-) `on` a007953) a000040_list $ drop (n-1) a000040_list)

%o -- _Reinhard Zumkeller_, Aug 17 2011

%K base,nonn,easy,nice,look

%O 1,1

%A _N. J. A. Sloane_, _Robert G. Wilson v_

%E Terms beyond a(57) by _R. J. Mathar_, Dec 09 2009

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 May 21 07:02 EDT 2024. Contains 372729 sequences. (Running on oeis4.)