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!)
A109710 Numbers k such that the sum of the digits of pi(k)^prime(k) is divisible by k. 1
1, 10, 35, 63, 106, 153, 602, 1548, 1710, 4680, 5274 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Next term after 5274 is greater than 10000.
a(12) > 40000. - Jinyuan Wang, Apr 10 2020
LINKS
EXAMPLE
The digits of pi(1548)^prime(1548) sum to 139320 and 139320 is divisible by 1548, so 1548 is in the sequence.
MATHEMATICA
Do[k = PrimePi[n]^Prime[n]; s = Plus @@ IntegerDigits[k]; If[Mod[s, n] == 0, Print[n]], {n, 1, 10^4}]
PROG
(PARI) is(k) = sumdigits(primepi(k)^prime(k))%k == 0; \\ Jinyuan Wang, Apr 10 2020
CROSSREFS
Cf. A007953.
Sequence in context: A044468 A355491 A351860 * A000447 A052472 A331429
KEYWORD
nonn,base,hard,more
AUTHOR
Ryan Propper, Aug 08 2005
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)