This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A331091 #12 Jan 09 2020 03:06:52 %S A331091 1,2,4,6,12,18,24,27,30,36,48,55,60,72,84,90,96,100,108,110,112,116, %T A331091 120,144,150,156,172,176,180,184,192,196,208,228,234,240,246,252,260, %U A331091 264,288,300,305,320,328,330,336,340,360,372,378,384,396,400,415,420,460,468,475,480,492 %N A331091 Positive negaFibonacci-Niven numbers k (A331085) such that -k is a negative negaFibonacci-Niven number (A331088). %C A331091 Positive numbers k that are divisible by the number of terms in the negaFibonacci representations of both k and -k (A215022 and A215023, respectively). %H A331091 Amiram Eldar, <a href="/A331091/b331091.txt">Table of n, a(n) for n = 1..10000</a> %t A331091 ind[n_] := Floor[Log[Abs[n]*Sqrt[5] + 1/2]/Log[GoldenRatio]]; %t A331091 f[1] = 1; f[n_] := If[n > 0, i = ind[n - 1]; If[EvenQ[i], i++]; i, i = ind[-n]; If[OddQ[i], i++]; i]; %t A331091 negaFibTermsNum[n_] := Module[{k = n, s = 0}, While[k != 0, i = f[k]; s += 1; k -= Fibonacci[-i]]; s]; %t A331091 Select[Range[500], Divisible[#, negaFibTermsNum[#]] && Divisible[#, negaFibTermsNum[-#]] &] %Y A331091 Intersection of A331085 and A331088. %Y A331091 Cf. A215022, A215023, A330711. %K A331091 nonn,base %O A331091 1,2 %A A331091 _Amiram Eldar_, Jan 08 2020