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!)
A282144 Numbers n with k digits in base x (MSD(n)=d_k, LSD(n)=d_1) such that, chosen one of their digits in position d_k < j < d_1, is Sum_{i=j..k}{(i-j+1)*d_i} = Sum_{i=1..j-1}{(j-i)*d_i}. Case x = 3. 3
4, 8, 11, 12, 19, 24, 28, 33, 36, 40, 47, 52, 56, 57, 61, 68, 72, 80, 84, 85, 92, 97, 99, 104, 108, 109, 113, 120, 125, 141, 145, 156, 168, 170, 171, 172, 183, 193, 204, 208, 216, 218, 229, 240, 244, 245, 250, 252, 255, 257, 269, 276, 278, 280, 291, 297, 301, 312 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All the palindromic numbers in base 3 with an even number of digits belong to the sequence.
Here the fulcrum is between two digits while in the sequence from A282107 to A282115 is one of the digits.
LINKS
EXAMPLE
229 in base 3 is 22111. If we split the number in 22 and 111 we have 2*1 + 2*2 = 6 for the left side and 1*1 + 1*2 + 1*3 = 6 for the right one.
MAPLE
P:=proc(n, h) local a, j, k: a:=convert(n, base, h):
for k from 1 to nops(a)-1 do
if add(a[j]*(k-j+1), j=1..k)=add(a[j]*(j-k), j=k+1..nops(a))
then RETURN(n); break: fi: od: end: seq(P(i, 3), i=1..10^3);
CROSSREFS
Sequence in context: A068798 A264890 A272299 * A147515 A311020 A311021
KEYWORD
nonn,base,easy
AUTHOR
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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)