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!)
A292931 Numbers n such that the sum of digits of 3^n (A004166) is divisible by 7. 2
25, 26, 30, 32, 47, 58, 79, 81, 87, 89, 102, 123, 141, 144, 145, 151, 164, 176, 178, 193, 201, 227, 239, 242, 257, 264, 282, 289, 300, 306, 319, 324, 329, 335, 336, 338, 348, 351, 358, 365, 395, 403, 437, 441, 450, 460, 468, 484, 489, 492, 495, 517, 518, 541, 542, 544, 554, 555, 563, 565, 570 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(3) = 30 is in the sequence because 3^30 = 205891132094649 has sum of digits 63, which is divisible by 7.
MAPLE
select(n -> convert(convert(3^n, base, 10), `+`) mod 7 = 0, [$1..1000]);
MATHEMATICA
Select[Range[600], Divisible[Total[IntegerDigits[3^#]], 7]&] (* Harvey P. Dale, Mar 01 2018 *)
PROG
(PARI) isok(n) = !(sumdigits(3^n) % 7); \\ Michel Marcus, Sep 27 2017
(Python)
from __future__ import division
A292931_list = [n for n in range(1000) if not sum(int(d) for d in str(3**n)) % 7] # Chai Wah Wu, Sep 28 2017
CROSSREFS
Cf. A004166.
Sequence in context: A340271 A003996 A132415 * A067810 A111168 A349865
KEYWORD
nonn,base
AUTHOR
Robert Israel, Sep 27 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 June 7 08:05 EDT 2024. Contains 373160 sequences. (Running on oeis4.)