Original problem was mis-stated. Three columns involved in the problem: first is an array of values (1,2,3,...) second is an array that results from multiplying array1 by a constant. The third is an array that results from operating a function such as max(current value of array2, prior value of array3)such that the first entry of array3 is null/non-existent. Thus array3 uses prior evaluation of itself...that's why the first entry of array3 is non-existent.
I've not succeeded in defining the variable for the third array. Errors such as "unresolved reference" when referring to same variable in the definition of itself; I found workaround to avoid "float is not subscriptable" errors for multiplying float by array...but so far have been unable to complete this task of resolving current and prior values of arrays in a variable. Help please!
Per the last ask:
constant1 = 2
array1 = [1, 2, 3, 4, 2...]
array2 = [i * constant1 for i in array1]
array3 = max(array2[0], array3[-1]) -----> please note correction of the problem statement...prior value of array3 is needed to evaluate current value of array3
but array3 generates an error I cannot resolve. Not subscritable...