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.

Showing 1-2 of 2 results.

A381053 Integers k such that Fibonacci(k) is odd and divides the sum of the first Fibonacci(k) nonzero Fibonacci numbers.

Original entry on oeis.org

1, 2, 34, 46, 68, 92, 94, 106, 166, 188, 212, 214, 226, 274, 332, 334, 346, 394, 428, 452, 454, 466, 514, 526, 548, 586, 634, 646, 668, 692, 694, 706, 754, 766, 788, 886, 908, 932, 934, 1006, 1028, 1052, 1114, 1126, 1172, 1174, 1186, 1234, 1268, 1292, 1294, 1306
Offset: 1

Views

Author

Oisín Flynn-Connolly, Apr 14 2025

Keywords

Comments

Has infinitely many members.
Subsequence of A383021.
Contains all 2p and 4p such that p is an odd prime and p == 2,8 (mod 15).

Examples

			For k =2, Fibonacci(2) = 1, which is odd, and Fibonacci(Fibonacci(1)) = Fibonacci(1) = 1, which is divisible by 1.
For k = 34, Fibonacci(34) = 5702887 is odd, and Fibonacci(1) + Fibonacci(2) + ... + Fibonacci(5702887) = Fibonacci(5702889) - 1, which is divisible by Fibonacci(34) = 5702887.
		

Crossrefs

Extensions

More terms from Alois P. Heinz, Apr 14 2025

A339598 Numbers k such that k | Sum_{i=1..k} A000045(i) and k+1 | Sum_{i=1..k+1} A000045(i).

Original entry on oeis.org

1, 6479, 11663, 51983, 196559
Offset: 1

Views

Author

Felix Fröhlich, Dec 09 2020

Keywords

Comments

a(1)-a(5) are given on p. 11 in Yaqubi, Fatehizadeh, 2020. According to the authors there are no other terms up to 10^6.
Apparently an erroneous version of A331977.
Included in accordance with OEIS policy of including published but erroneous sequences to serve as pointers to the correct values.

Crossrefs

Programs

  • PARI
    is(n) = my(s=sum(i=1, n, fibonacci(i))); lift(Mod(s, n))==0 && lift(Mod(s+fibonacci(n+1), n+1))==0
Showing 1-2 of 2 results.