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!)
A198682 Nonnegative multiples of 3 whose sum of base-3 digits are of the form 3*k+2. 3

%I #26 Mar 04 2016 06:57:40

%S 6,12,18,30,36,51,54,69,75,84,90,105,108,123,129,141,147,153,162,177,

%T 183,195,201,207,219,225,240,246,252,267,270,285,291,303,309,315,324,

%U 339,345,357,363,369,381,387,402,411,417,423,435,441,456,459,474,480,486

%N Nonnegative multiples of 3 whose sum of base-3 digits are of the form 3*k+2.

%C It appears that Sum[k^j, 0<=k<=2^n-1, k in A198680] = Sum[k^j, 0<=k<=2^n-1, k in A198681] = Sum[k^j, 0<=k<=2^n-1, k in A180682], for 0<=j<=n-1, which has been verified numerically in a number of cases. This is a generalization of Prouhet's Theorem (see the reference). To illustrate for j=3, we have Sum[k^3, 0<=k<=2^n-1, k in A198680] = {0, 0, 12636, 1108809, 94478400, 7780827681, 633724260624, 51425722195929, 4168024588857600,...}, Sum[k^3, 0<=k<=2^n-1, k in A198681] = {0, 27, 14580, 1095687, 94478400, 7780827681, 633724260624, 51425722195929, 4168024588857600,..., Sum[k^3, 0<=k<=2^n-1, k in A198682] = {0, 216, 7776, 1121931, 94478400, 7780827681, 633724260624, 51425722195929, 4168024588857600,...}, and it is seen that all three sums agree for n>=4=j+1.

%C For each m, the sequence contains exactly one of 9*m, 9*m+3, 9*m+6. - _Robert Israel_, Mar 04 2016

%H Robert Israel, <a href="/A198682/b198682.txt">Table of n, a(n) for n = 1..10000</a>

%H Chris Bernhardt, <a href="http://www.jstor.org/stable/27643161">Evil twins alternate with odious twins</a>, Math. Mag. 82 (2009), pp. 57-62.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Prouhet-Tarry-EscottProblem.html">Prouhet-Tarry-Escott Problem</a>

%p select(t -> convert(convert(t,base,3),`+`) mod 3 = 2, [seq(3*i,i=1..1000)]); # _Robert Israel_, Mar 04 2016

%t Select[Range[3, 498, 3], IntegerQ[(-2 + Plus@@IntegerDigits[#, 3])/3] &] (* _Alonso del Arte_, Nov 02 2011 *)

%o (PARI) isok(n) = !(n % 3) && !((vecsum(digits(n, 3)) - 2) % 3); \\ _Michel Marcus_, Mar 02 2016

%Y Cf. A000069, A001969, A157971, A158704, A198680, A198681.

%K nonn,base

%O 1,1

%A _John W. Layman_, Oct 28 2011

%E Offset corrected by _Michel Marcus_, Mar 02 2016

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 15 22:47 EDT 2024. Contains 372549 sequences. (Running on oeis4.)