login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A376357
Positions of numbers in A007961 that end in 0.
6
4, 8, 9, 13, 16, 20, 24, 25, 29, 33, 34, 36, 40, 44, 45, 49, 53, 57, 58, 62, 64, 68, 72, 73, 77, 80, 81, 85, 89, 90, 94, 97, 100, 104, 108, 109, 113, 116, 120, 121, 125, 129, 130, 134, 137, 141, 144, 148, 152, 153, 157, 160, 164, 168, 169, 173, 177, 178, 182
OFFSET
1,1
COMMENTS
Every positive integer is in exactly one of these sequences: this sequence, A376358, A376359, or A376360.
Conjecture: {a(n+1) - a(n) : n >= 1} = {1,2,3,4}. (See related conjectures at A376358-A376360.)
MATHEMATICA
a[n_, poly_] := FromDigits[FoldList[{Mod[#[[1]], #2], Quotient[#[[1]], #2]} &, {n, 0}, Reverse[Map[(poly - 2) # (# - 1)/2 + # &,
Range[Floor[Sqrt[2 n]]]]]][[All, 2]]]
t4 = Map[a[#, 4] &, Range[200]]; (* A007961 *)
m = Mod[t4, 10];
Table[Flatten[Position[m, r]], {r, 0, 2}]
p0 = Flatten[Position[m, 0]] (* this sequence *)
p1 = Flatten[Position[m, 1]] (* A376358 *)
p2 = Flatten[Position[m, 2]] (* A376359 *)
p3 = Flatten[Position[m, 3]] (* A376360 *)
(* Peter J. C. Moses, Sep 20 2024 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Clark Kimberling, Sep 25 2024
STATUS
approved