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!)
A280993 Primes such that the absolute value of the difference between the largest digit and the sum of all the other digits is a cube. 2
11, 19, 23, 43, 67, 89, 101, 109, 113, 131, 157, 167, 179, 197, 199, 211, 223, 241, 257, 263, 269, 311, 313, 331, 337, 347, 353, 359, 373, 379, 397, 421, 431, 449, 461, 463, 523, 541, 571, 593, 607, 617, 641, 643, 661, 683, 719, 733, 739, 743 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If the largest digit L (say) is repeated, the criterion is that |L - (sum of all digits except for one copy of L)| is a cube.
LINKS
EXAMPLE
The prime 2731 is a term, because 7-2-3-1 = 1 is a cube.
The prime 13 is not in the sequence, as 3-1 = 2, and 2 is not a cube.
The prime 313 is a term because |3 - (1+3)| = 1 is a cube.
MATHEMATICA
Select[Prime[Range[150]], IntegerQ[Surd[Abs[Max[IntegerDigits[#]]-Total[ Most[ Sort[IntegerDigits[#]]]]], 3]]&] (* Harvey P. Dale, Dec 31 2021 *)
PROG
(PARI) listA280993(k, {k0=5})={my(H=List(), y); forprime(z=prime(k0), prime(k), y=digits(z); if(ispower(abs(vecsum(y)-2*vecmax(y)), 3), listput(H, z))); return(vector(#H, i, H[i]))} \\ Looks for those belonging terms between prime(k0) and prime(k). - R. J. Cano, Feb 06 2017
CROSSREFS
A156753 and A156979 are subsequences.
Sequence in context: A161601 A352480 A031406 * A352925 A105908 A084654
KEYWORD
nonn,easy,base
AUTHOR
Osama Abuajamieh, Jan 14 2017
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 16 14:05 EDT 2024. Contains 371740 sequences. (Running on oeis4.)