Generate Pseudo-Random Binary Sequences
Generate pseudo-random binary sequences using Linear Feedback Shift Register (LFSR) with customizable feedback polynomials and initial seed values.
Binary string representing the initial state (1s and 0s only)
Comma-separated tap positions starting from 1
Number of shift operations to perform
Common LFSR configurations and their applications
Standard 4-bit LFSR with taps at positions 4 and 3, generating maximum-length sequence
Seed: 1000
Taps: [4,3]
Length: 4
Type: fibonacci
8-bit external LFSR configuration commonly used in cryptographic applications
Seed: 10110001
Taps: [8,6,5,4]
Length: 8
Type: fibonacci
Internal LFSR configuration with feedback applied to multiple positions
Seed: 10101
Taps: [5,3]
Length: 5
Type: galois
Basic 3-bit LFSR for educational purposes and understanding fundamentals
Seed: 110
Taps: [3,2]
Length: 3
Type: fibonacci