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!)
A297244 Up-variation of the base-15 digits of n; see Comments. 4

%I #7 Jan 19 2018 19:14:00

%S 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,0,0,

%T 1,2,3,4,5,6,7,8,9,10,11,12,0,0,0,0,1,2,3,4,5,6,7,8,9,10,11,0,0,0,0,0,

%U 1,2,3,4,5,6,7,8,9,10,0,0,0,0,0,0,1,2,3

%N Up-variation of the base-15 digits of n; see Comments.

%C Suppose that a number n has base-b digits b(m), b(m-1), ..., b(0). The base-b down-variation of n is the sum DV(n,b) of all d(i)-d(i-1) for which d(i) > d(i-1); the base-b up-variation of n is the sum UV(n,b) of all d(k-1)-d(k) for which d(k) < d(k-1). The total base-b variation of n is the sum TV(n,b) = DV(n,b) + UV(n,b). Every positive integer occurs infinitely many times. See A297330 for a guide to related sequences and partitions of the natural numbers.

%H Clark Kimberling, <a href="/A297244/b297244.txt">Table of n, a(n) for n = 1..10000</a>

%e 19 in base 15: 1,4; here UV = 3, so that a(19) = 3.

%t g[n_, b_] := Differences[IntegerDigits[n, b]];

%t b = 15; z = 120; Table[-Total[Select[g[n, b], # < 0 &]], {n, 1, z}]; (* A297243 *)

%t Table[Total[Select[g[n, b], # > 0 &]], {n, 1, z}]; (* A297244 *)

%Y Cf. A297243, A297245, A297330.

%K nonn,base,easy

%O 1,18

%A _Clark Kimberling_, Jan 17 2018

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 August 15 09:40 EDT 2024. Contains 375173 sequences. (Running on oeis4.)