FORMULA
F(n) = floor(10^(floor((n+3)/4)*(n+1))/(10^(floor((n+3)/4)-1)*(100*(10^(floor((n+3)/4)-1)-1)+90)-1))-floor(floor(10^(floor((n+3)/4)*(n+1))/(10^(floor((n+3)/4)-1)*(100 *(10^(floor((n+3)/4)-1)-1)+90)-1))/10^floor((n+3)/4))*10^floor((n+3)/4). - Andrew Lenker, Sep 09 2024
Discussion
Mon Sep 09
20:59
Alois P. Heinz: this was rejected before ...
21:00
Alois P. Heinz: we do not need formulas like this ... you are free to publish this elsewhere ...
21:04
Alois P. Heinz: btw: the editor's name is Joerg Arndt ...
Discussion
Mon Sep 09
20:58
Alois P. Heinz: ugly, being terribly inelegant, does not extend to negative indices ...
FORMULA
F(n) = floor(10^(floor((n+3)/4)*(n+1))/(10^(floor((n+3)/4)-1)*(100*(10^(floor((n+3)/4)-1)-1)+90)-1))-floor(floor(10^(floor((n+3)/4)*(n+1))/(10^(floor((n+3)/4)-1)*(100 *(10^(floor((n+3)/4)-1)-1)+90)-1))/10^floor((n+3)/4))*10^floor((n+3)/4). - Andrew Lenker, Sep 09 2024
Discussion
Mon Sep 09
20:42
Andrew Lenker: Fixed it. Joerg Arnt, I'm sorry for being stubborn and for my formula that looks like a train wreck hit by a tornado, but it works on your software now. I know it is ugly and uses Rounding, as I use different methods than most. But please give my train wreck a chance.
FORMULA
F(n) = floor(10^(floor((n+2)/4)*n)/(10^(floor((n+2)/4)-1)*(100*(10^(floor((n+2)/4)-1)-1)+90)-1))-floor(floor(10^(floor((n+2)/4)*n)/(10^(floor((n+2)/4)-1)*(100 *(10^(floor((n+2)/4)-1)-1)+90)-1))/10^floor((n+2)/4))*10^floor((n+2)/4)
(Decimal extraction method: Geometrically robust, but heavy computation). - Andrew Lenker, Sep 09 2024
KEYWORD
nonn,core,nice,easy,hear,changed
Discussion
Mon Sep 09
04:32
Michel Marcus: not convinced
04:53
Andrew Lenker: 1/89, 1/9899, 1/998999, etc, produced Fibonacci Sequence in decimal. The formula iterates each four times to slow growth. Then extracts using subtraction of a reduced copy
05:59
Joerg Arndt: Pari: for(n=1,11,if(F(n)!=fibonacci(n),print1(n,", "))) gives
1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
So, wrong on top of being terribly inelegant.
Reverting edit.
FORMULA
F(n) = floor(10^(floor((n+2)/4)*n)/(10^(floor((n+2)/4)-1)*(100*(10^(floor((n+2)/4)-1)-1)+90)-1))-floor(floor(10^(floor((n+2)/4)*n)/(10^(floor((n+2)/4)-1)*(100 *(10^(floor((n+2)/4)-1)-1)+90)-1))/10^floor((n+2)/4))*10^floor((n+2)/4)
(Decimal extraction method: Geometrically robust, but heavy computation). - Andrew Lenker, Sep 09 2024
REFERENCES
Robert Dougherty-Bliss, The Meta-C-finite Ansatz, arXiv preprint arXiv:2206.14852, 2022
LINKS
Robert Dougherty-Bliss, <a href="https://arxiv.org/abs/2206.14852">The Meta-C-finite Ansatz</a>, arXiv preprint arXiv:2206.14852, 2022
FORMULA
Sum_{k=1..n} k^3*F(k) = (n^3-6*n^2+24*n-50)*F(n+1) - ((n+1)^3-6*(n+1)^2+24*(n+1)-50)*F(n) + 50. - Prabha Sivaramannair, Jul 15 2024