login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A091366 Primes p such that the sum of the cubes of the digits of p is prime. 6
11, 101, 113, 131, 139, 151, 193, 199, 223, 227, 241, 263, 269, 281, 283, 311, 337, 353, 359, 373, 421, 449, 461, 463, 487, 557, 577, 593, 599, 641, 643, 661, 733, 757, 821, 823, 827, 829, 883, 887, 919, 953, 991, 997, 1013, 1031, 1039, 1051, 1093, 1103, 1123 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

Apparently, in most cases the sum of the digits of such primes is also prime, see A091365 for the exceptions.

I conjecture the contrary: the relative density of numbers in this sequence with prime digit sum is 0. -- Charles R Greathouse IV

EXAMPLE

a(1)=11 because 1^3 + 1^3 = 2 which is prime. a(10)=227 because 2^3 + 2^3 + 7^3 = 359 which is prime.

PROG

(PARI) isA091366(n)=my(v); if(!isprime(n), return(0)); v=eval(Vec(Str(n))); isprime(sum(i=1, #v, v[i]^3))

CROSSREFS

Cf. A046704 (primes whose digits sum to a prime) A052034 (primes whose digits squared sum to a prime) A091365 (primes whose digits cubed sum to a prime but whose digits do not sum to a prime).

Sequence in context: A057148 A076289 A117697 * A158051 A073064 A155075

Adjacent sequences:  A091363 A091364 A091365 * A091367 A091368 A091369

KEYWORD

base,nonn

AUTHOR

Chuck Seggelin (barkeep(AT)plastereddragon.com), Jan 03 2004

EXTENSIONS

Inserted 997, added program and comment -- Charles R Greathouse IV (charles.greathouse(AT)case.edu), Sep 08 2010

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 15:39 EST 2012. Contains 205635 sequences.