cp's OEIS Frontend

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.

A328207 Starts of runs of 4 consecutive factorial base Niven numbers (A118363).

This page as a plain text file.
%I A328207 #14 Jan 05 2025 19:51:41
%S A328207 9320542,11397166,29048470,29394574,40469902,40816006,58467310,
%T A328207 72657574,84079006,101730310,178911502,200716054,283088806,479329774,
%U A328207 485213542,499403806,528476542,530553166,544743430,559625902,559972006,574162270,603235006,617425270,641652550
%N A328207 Starts of runs of 4 consecutive factorial base Niven numbers (A118363).
%C A328207 Dahlenberg & Edgar proved that this sequence is infinite and that there are no consecutive runs of 5 or more factorial base Niven numbers.
%C A328207 a(1)-a(18) were calculated by Dahlenberg & Edgar.
%H A328207 Amiram Eldar, <a href="/A328207/b328207.txt">Table of n, a(n) for n = 1..512</a>
%H A328207 Paul Dahlenberg and Tom Edgar, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Abstracts/56-2/dalenberg.pdf">Consecutive factorial base Niven numbers</a>, Fibonacci Quarterly, Vol. 56, No. 2 (2018), pp. 163-166; <a href="https://web.archive.org/web/20211018191809/https://community.plu.edu/~edgartj/consecutivefactniven.pdf">alternative link</a>. [Wayback Machine link]
%e A328207 9320542 is in the sequence since 9320542, 9320543, 9320544 and 9320545 are all in A118363: A034968(9320542) = 22 is a divisor of 9320542, A034968(9320543) = 23 is a divisor of 9320543, A034968(9320544) = 18 is a divisor of 9320544, and A034968(9320545) = 19 is a divisor of 9320545.
%t A328207 sf[n_] := Module[{s = 0, i = 2, k = n}, While[k > 0, k = Floor[n/i!]; s = s + (i - 1)*k; i++]; n - s]; fnQ[n_] := Divisible[n, sf[n]]; aQ[n_] := AllTrue[n + Range[0, 3], fnQ]; Select[Range[10^8], aQ] (* after _Jean-François Alcover_ at A034968 *)
%Y A328207 Cf. A007623, A034968, A118363.
%K A328207 nonn,base
%O A328207 1,1
%A A328207 _Amiram Eldar_, Oct 07 2019