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!)
A282147 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 = 6. 3
7, 14, 21, 28, 35, 38, 42, 45, 52, 59, 73, 76, 83, 84, 115, 126, 146, 157, 168, 188, 199, 210, 217, 219, 226, 228, 233, 252, 257, 259, 270, 290, 301, 312, 332, 343, 354, 363, 374, 385, 405, 416, 427, 434, 438, 445, 456, 476, 487, 498, 504, 507, 518, 529, 549, 560 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All the palindromic numbers in base 6 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.
Numbers with this property in all the bases from 2 to 6 are:
420240, 610273, 848655, 855973, 987751, 1830038, 2347657, 3480366, 3519545, 4832865, 5141958, 6050107, 9010530, 9770426, 11520023, 13951022, 14036167, 14694080, 15106072, 16487203, 24125707, 25209012, ...
LINKS
EXAMPLE
580 in base 6 is 2404. If we split the number in 24 and 04 we have 4*1 + 2*2 = 8 for the left side and 0*1 + 4*2 = 8 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, 6), i=1..10^3);
CROSSREFS
Sequence in context: A345773 A037985 A044847 * A283444 A109048 A289398
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 24 17:20 EDT 2024. Contains 371962 sequences. (Running on oeis4.)